]> git.armaanb.net Git - stagit.git/blob - resources/style.css
Remove unused CSS
[stagit.git] / resources / style.css
1 body {
2         font-size: 0.8rem;
3         font-family: monospace;
4         color: #ebdbb2;
5         background-color: #282828;
6         max-width: max-content;
7         min-width: min-content;
8 }
9
10 pre {
11         tab-size: 4;
12 }
13
14 h1, h2, h3, h4, h5, h6 {
15         margin: 0;
16 }
17
18 img, h1, h2 {
19         vertical-align: middle;
20 }
21
22 img {
23         border: 0;
24 }
25
26 a:target {
27         background-color: #eee;
28 }
29
30 a.d,
31 a.h,
32 a.i,
33 a.line {
34         text-decoration: none;
35 }
36
37 article img {
38         max-width: 100%;
39 }
40
41 a {
42         color: #83a598;
43 }
44
45 table thead td {
46         font-weight: bold;
47 }
48
49 table td {
50         padding: 0 0.4em;
51 }
52
53 #content table td {
54         vertical-align: top;
55         white-space: nowrap;
56 }
57
58 #branches tr:hover td,
59 #tags tr:hover td,
60 #index tr:hover td,
61 #log tr:hover td,
62 #files tr:hover td {
63         background-color: #333;
64 }
65
66 #index tr td:nth-child(2),
67 #tags tr td:nth-child(3),
68 #branches tr td:nth-child(3),
69 #log tr td:nth-child(2) {
70         white-space: normal;
71 }
72
73 .desc {
74         color: #928374;
75 }
76
77 hr {
78         border: 0;
79         border-top: 1px solid #928374;
80         height: 1px;
81 }
82
83 pre a.h {
84         color: #fe8019;
85 }
86
87 .A,
88 span.i,
89 pre a.i {
90         color: #b8bb26;
91 }
92
93 .D,
94 span.d,
95 pre a.d {
96         color: #fb4934;
97 }
98
99 pre a.h:hover,
100 pre a.i:hover,
101 pre a.d:hover {
102         text-decoration: none;
103 }
104
105 .url td:nth-child(2) {
106         padding-top:    0.2em;
107         padding-bottom: 0.9em;
108 }
109
110 .url td:nth-child(2) span {
111         padding: 1px 5px;
112         border: 1px solid #ebdbb2;
113         border-radius: 5px;
114 }
115
116 .url td:nth-child(2) span a {
117         color: #ebdbb2;
118 }
119
120 pre {
121         white-space: pre-wrap;
122 }