]> git.cameronkatri.com Git - cgit.git/blob - cgit.css
gitweb ripoff: set tr:hover to highligt current row
[cgit.git] / cgit.css
1 body {
2 font-family: arial;
3 font-size: normal;
4 background: white;
5 padding: 0em;
6 margin: 0.5em;
7 }
8
9
10 h2 {
11 font-size: normal;
12 font-weight: bold;
13 margin-bottom: 0.1em;
14 }
15
16 a {
17 color: blue;
18 text-decoration: none;
19 }
20
21 a:hover {
22 text-decoration: underline;
23 }
24
25 table.list {
26 border: solid 1px black;
27 border-collapse: collapse;
28 border: solid 1px #aaa;
29 }
30 table.list tr {
31 background: white;
32 }
33 table.list tr:hover {
34 background: #eee;
35 }
36 table.list th {
37 font-weight: bold;
38 background: #ddd;
39 border-bottom: solid 1px #aaa;
40 padding: 0.1em 0.5em 0.1em 0.5em;
41 vertical-align: baseline;
42 }
43 table.list td {
44 border: none;
45 padding: 0.1em 0.5em 0.1em 0.5em;
46 }
47 img {
48 border: none;
49 }
50
51
52 div#header {
53 background-color: #ddd;
54 padding: 0.25em 0.25em 0.25em 0.5em;
55 font-size: 150%;
56 font-weight: bold;
57 border: solid 1px #aaa;
58 vertical-align: middle;
59 }
60 div#header img#logo {
61 float: right;
62 }
63
64 div#content {
65 margin: 0.5em 0.5em;
66 }
67
68 div#blob {
69 border: solid 1px black;
70 }
71
72 div.error {
73 color: red;
74 font-weight: bold;
75 margin: 1em 2em;
76 }
77 div.ls-dir a {
78 font-weight: bold;
79 }
80 th.filesize, td.filesize {
81 text-align: right;
82 }
83 th.filemode, td.filemode {
84 text-align: center;
85 }
86
87 td.blob {
88 white-space: pre;
89 font-family: courier;
90 font-size: 100%;
91 background-color: white;
92 }
93
94 table.log td {
95 white-space: nowrap;
96 }
97
98 table.commit-info {
99 border-collapse: collapse;
100 margin-top: 1em;
101
102 }
103 table.commit-info th {
104 text-align: left;
105 font-weight: normal;
106 padding: 0.1em 1em 0.1em 0.1em;
107 }
108 table.commit-info td {
109 font-weight: normal;
110 padding: 0.1em 1em 0.1em 0.1em;
111 }
112 div.commit-subject {
113 font-weight: bold;
114 font-size: 110%;
115 margin: 1em 0em 1em;
116 }
117 div.commit-msg {
118 white-space: pre;
119 font-family: courier;
120 font-size: 100%;
121 }
122 .sha1 {
123 font-family: courier;
124 font-size: 90%;
125 }
126 .left {
127 text-align: left;
128 }
129 .right {
130 text-align: right;
131 }