summaryrefslogtreecommitdiffabout
path: root/cgit.css
Unidiff
Diffstat (limited to 'cgit.css') (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.css25
1 files changed, 25 insertions, 0 deletions
diff --git a/cgit.css b/cgit.css
index 5f01926..7b8e468 100644
--- a/cgit.css
+++ b/cgit.css
@@ -68,30 +68,36 @@ div#content {
68 margin: 0.5em 0.5em; 68 margin: 0.5em 0.5em;
69} 69}
70 70
71div#blob { 71div#blob {
72 border: solid 1px black; 72 border: solid 1px black;
73} 73}
74 74
75div.error { 75div.error {
76 color: red; 76 color: red;
77 font-weight: bold; 77 font-weight: bold;
78 margin: 1em 2em; 78 margin: 1em 2em;
79} 79}
80div.ls-blob, div.ls-dir {
81 font-family: monospace;
82}
80div.ls-dir a { 83div.ls-dir a {
81 font-weight: bold; 84 font-weight: bold;
82} 85}
83th.filesize, td.filesize { 86th.filesize, td.filesize {
84 text-align: right; 87 text-align: right;
85} 88}
89td.filesize {
90 font-family: monospace;
91}
86td.filemode { 92td.filemode {
87 font-family: monospace; 93 font-family: monospace;
88} 94}
89 95
90td.blob { 96td.blob {
91 white-space: pre; 97 white-space: pre;
92 font-family: courier; 98 font-family: courier;
93 font-size: 100%; 99 font-size: 100%;
94 background-color: white; 100 background-color: white;
95} 101}
96 102
97table.log td { 103table.log td {
@@ -145,22 +151,41 @@ table.diffstat td.add a {
145} 151}
146table.diffstat td.del a { 152table.diffstat td.del a {
147 color: red; 153 color: red;
148} 154}
149table.diffstat td.upd a { 155table.diffstat td.upd a {
150 color: blue; 156 color: blue;
151} 157}
152table.diffstat td.summary { 158table.diffstat td.summary {
153 /* border-top: solid 1px black; */ 159 /* border-top: solid 1px black; */
154 color: #888; 160 color: #888;
155 padding-top: 0.5em; 161 padding-top: 0.5em;
156} 162}
163
164table.diff td {
165 border: solid 1px black;
166 font-family: monospace;
167 white-space: pre;
168}
169
170table.diff td div.hunk {
171 background: #ccc;
172}
173
174table.diff td div.add {
175 color: green;
176}
177
178table.diff td div.del {
179 color: red;
180}
181
157.sha1 { 182.sha1 {
158 font-family: courier; 183 font-family: courier;
159 font-size: 90%; 184 font-size: 90%;
160} 185}
161.left { 186.left {
162 text-align: left; 187 text-align: left;
163} 188}
164.right { 189.right {
165 text-align: right; 190 text-align: right;
166} 191}