style.css (1685B)
1body {
2color: #000;
3background-color: #fff;
4font-family: monospace;
5}
67
h1, h2, h3, h4, h5, h6 {
8font-size: 1em;
9margin: 0;
10}
1112
img, h1, h2 {
13vertical-align: middle;
14}
1516
img {
17border: 0;
18}
1920
a:target {
21background-color: #ccc;
22}
2324
a.d,
25a.h,
26a.i,
27a.line {
28text-decoration: none;
29}
3031
#blob a {
32color: #555;
33}
3435
#blob a:hover {
36color: blue;
37text-decoration: none;
38}
3940
table thead td {
41font-weight: bold;
42}
4344
table td {
45padding: 0 0.4em;
46}
4748
#content table td {
49vertical-align: top;
50white-space: nowrap;
51}
5253
#branches tr:hover td,
54#tags tr:hover td,
55#index tr:hover td,
56#log tr:hover td,
57#files tr:hover td {
58background-color: #eee;
59}
6061
#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) {
65white-space: normal;
66}
6768
td.num {
69text-align: right;
70}
7172
.desc {
73color: #555;
74}
7576
hr {
77border: 0;
78border-top: 1px solid #555;
79height: 1px;
80}
8182
pre {
83font-family: monospace;
84}
8586
pre a.h {
87color: #00a;
88}
8990
.A,
91span.i,
92pre a.i {
93color: #070;
94}
9596
.D,
97span.d,
98pre a.d {
99color: #e00;
100}
101102
pre a.h:hover,
103pre a.i:hover,
104pre a.d:hover {
105text-decoration: none;
106}
107108
@media (prefers-color-scheme: dark) {
109body {
110background-color: #000;
111color: #bdbdbd;
112}
113hr {
114border-color: #222;
115}
116a {
117color: #56c8ff;
118}
119a:target {
120background-color: #222;
121}
122.desc {
123color: #aaa;
124}
125#blob a {
126color: #555;
127}
128#blob a:target {
129color: #eee;
130}
131#blob a:hover {
132color: #56c8ff;
133}
134pre a.h {
135color: #00cdcd;
136}
137.A,
138span.i,
139pre a.i {
140color: #00cd00;
141}
142.D,
143span.d,
144pre a.d {
145color: #cd0000;
146}
147#branches tr:hover td,
148#tags tr:hover td,
149#index tr:hover td,
150#log tr:hover td,
151#files tr:hover td {
152background-color: #111;
153}
154}