oshgit

Shell scripts based on stagit to manage OSHs git repositories.
git clone git://git.oshgnacknak.de/oshgit.git
Log | Files | Refs | README

style.css (1180B)


      1 body {
      2 	color: white;
      3 	background-color: #151515;
      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 {
     25 	color: lightblue;
     26 }
     27 
     28 a:visited {
     29 	color: gray;
     30 } 
     31 
     32 a.d,
     33 a.h,
     34 a.i,
     35 a.line {
     36 	color: red;
     37 	text-decoration: none;
     38 }
     39 
     40 #blob a {
     41 	color: #777;
     42 }
     43 
     44 #blob a:hover {
     45 	color: lightblue;
     46 	text-decoration: none;
     47 }
     48 
     49 table thead td {
     50 	font-weight: bold;
     51 }
     52 
     53 table td {
     54 	padding: 0 0.4em;
     55 }
     56 
     57 #content table td {
     58 	vertical-align: top;
     59 	white-space: nowrap;
     60 }
     61 
     62 #branches tr:hover td,
     63 #tags tr:hover td,
     64 #index tr:hover td,
     65 #log tr:hover td,
     66 #files tr:hover td {
     67 	background-color: #222;
     68 }
     69 
     70 #index tr td:nth-child(2),
     71 #tags tr td:nth-child(3),
     72 #branches tr td:nth-child(3),
     73 #log tr td:nth-child(2) {
     74 	white-space: normal;
     75 }
     76 
     77 td.num {
     78 	text-align: right;
     79 }
     80 
     81 .desc {
     82 	color: #eee;
     83 }
     84 
     85 hr {
     86 	border: 0;
     87 	border-top: 1px solid #777;
     88 	height: 1px;
     89 }
     90 
     91 pre {
     92 	font-family: monospace;
     93 }
     94 
     95 pre a.h {
     96 	color: #888;
     97 }
     98 
     99 .A,
    100 span.i,
    101 pre a.i {
    102 	color: #070;
    103 }
    104 
    105 .D,
    106 span.d,
    107 pre a.d {
    108 	color: #e00;
    109 }
    110 
    111 pre a.h:hover,
    112 pre a.i:hover,
    113 pre a.d:hover {
    114 	text-decoration: none;
    115 }