style.css (1102B) [raw]
1 body { 2 color: #000; 3 background-color: #fff; 4 font-family: monospace; 5 } 6 7 h1, h2, h3, h4, h5, h6 { 8 font-size: 1em; 9 margin: 0; 10 } 11 12 img, h1, h2 { 13 vertical-align: middle; 14 } 15 16 img { 17 border: 0; 18 } 19 20 a:target { 21 background-color: #ccc; 22 } 23 24 a.d, 25 a.h, 26 a.i, 27 a.line { 28 text-decoration: none; 29 } 30 31 #blob a { 32 color: #555; 33 } 34 35 #blob a:hover { 36 color: blue; 37 text-decoration: none; 38 } 39 40 table thead td { 41 font-weight: bold; 42 } 43 44 table td { 45 padding: 0 0.4em; 46 } 47 48 #content table td { 49 vertical-align: top; 50 white-space: nowrap; 51 } 52 53 #branches tr:hover td, 54 #tags tr:hover td, 55 #index tr:hover td, 56 #log tr:hover td, 57 #files tr:hover td { 58 background-color: #eee; 59 } 60 61 #index tr td:nth-child(2), 62 #tags tr td:nth-child(3), 63 #branches tr td:nth-child(3), 64 #log tr td:nth-child(2) { 65 white-space: normal; 66 } 67 68 td.num { 69 text-align: right; 70 } 71 72 .desc { 73 color: #555; 74 } 75 76 hr { 77 border: 0; 78 border-top: 1px solid #555; 79 height: 1px; 80 } 81 82 pre { 83 font-family: monospace; 84 } 85 86 pre a.h { 87 color: #00a; 88 } 89 90 .A, 91 span.i, 92 pre a.i { 93 color: #070; 94 } 95 96 .D, 97 span.d, 98 pre a.d { 99 color: #e00; 100 } 101 102 pre a.h:hover, 103 pre a.i:hover, 104 pre a.d:hover { 105 text-decoration: none; 106 }