1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
body {
background: #fff;
color: #000;
font-family: Helvetica, Arial, sans-serif;
font-size: .8em;
line-height: 1.5;
}
pre.listing {
background: #eee;
border: 1px solid #ccc;
margin: .3em auto;
padding: .1em .3em;
width: 90%;
}
pre.listing b {
color: #f00;
}
/* TABLE
* ========================================================================= */
table {
border: 1px solid #888;
border-collapse: collapse;
line-height: 1;
margin: 1em auto;
width: 90%;
}
/* Caption
* ------------------------------------------------------------------------- */
table caption {
font-size: .9em;
font-weight: bold;
}
/* Header
* ------------------------------------------------------------------------- */
table thead {
background: #aaa url(../images/bg-table-thead.png) repeat-x top left;
font-size: .9em;
}
table thead tr th {
border: 1px solid #888;
font-weight: normal;
padding: .3em 1.67em .1em 1.67em;
text-align: left;
}
/* Body
* ------------------------------------------------------------------------- */
table tbody tr td {
cursor: default;
padding: .3em 1.5em;
}
table tbody tr.even {
background: #f3f3f3;
}
table tbody tr.odd {
background: #fff;
}
table span {
background-position: center left;
background-repeat: no-repeat;
padding: .2em 0 .2em 1.5em;
}
table span.file {
background-image: url(../images/page_white_text.png);
}
table span.folder {
background-image: url(../images/folder.png);
}
|