blob: cf98bac644d2fe8a1e0d0aac127972a06e089bcc (
plain)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
/* ===== Gruvbox Theme for cgit ===== */
body {
background: #282828;
color: #ebdbb2;
font-family: monospace;
margin: 0;
}
#header {
border-bottom: 1px solid #3c3836;
padding-bottom: 6px;
}
#header a {
color: #fabd2f;
}
#header h1 {
color: #fbf1c7;
}
.tabs a {
background: #3c3836;
color: #ebdbb2;
padding: 4px 10px;
border-radius: 4px;
}
.tabs a.active {
background: #458588;
color: #fbf1c7;
}
table {
width: auto;
}
th {
background: #3c3836;
color: #fbf1c7;
}
td {
border-top: 1px solid #3c3836;
}
a {
color: #83a598;
text-decoration: none;
}
a:hover {
color: #fabd2f;
}
pre {
background: #1d2021;
padding: 10px;
border-radius: 6px;
}
.add {
background: #32361a;
color: #b8bb26;
}
.del {
background: #3c1f1e;
color: #fb4934;
}
.branch {
background: #b16286;
color: #fbf1c7;
padding: 2px 6px;
border-radius: 4px;
}
.head {
background: #d79921;
color: #282828;
padding: 2px 6px;
border-radius: 4px;
}
#footer {
margin-top: 40px;
padding-top: 10px;
border-top: 1px solid #3c3836;
font-size: 12px;
color: #a89984;
}
|