]> gitweb.ps.run Git - ps-cgit/blob - cgit.css
Update README with install/config information
[ps-cgit] / cgit.css
1 body {
2         font-family: arial;
3         font-size: 11pt;
4         background: white;
5         padding: 0em;
6         margin: 0em;
7 }
8
9
10 h2 {
11         font-size: 120%;
12         font-weight: bold;
13         margin-bottom: 0.5em;
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: none;
27         border-collapse: collapse;
28 }
29 table.list tr {
30         background: white;
31 }
32 table.list tr:hover {
33         background: #eee;
34 }
35 table.list tr.nohover:hover {
36         background: white;
37 }
38 table.list th {
39         font-weight: normal;
40         border-bottom: solid 1px #777;
41         padding: 0.1em 0.5em 0.1em 0.5em;
42         vertical-align: baseline;
43 }
44 table.list td {
45         border: none;
46         padding: 0.1em 0.5em 0.1em 0.5em;
47 }
48 img {
49         border: none;
50 }
51 table#layout {
52         width: 100%;
53         border-collapse: collapse;
54         margin: 0px;
55 }
56 td#header {
57         background-color: #ddd;
58         padding: 0.25em 0.25em 0.25em 0.5em;
59         font-size: 150%;
60         font-weight: bold;
61         border-bottom: solid 1px #aaa;
62         vertical-align: middle;
63 }
64 td#header img#logo {
65         float: right;
66 }
67
68 td#header input {
69         float: right;
70         margin: 0.25em 1em;
71 }
72 td#header a {
73         color: black;
74 }
75
76 td#content {
77         padding: 1em 0.5em;
78 }
79
80 div#blob {
81         border: solid 1px black;
82 }
83
84 div.error {
85         color: red;
86         font-weight: bold;
87         margin: 1em 2em;
88 }
89 div.ls-blob, div.ls-dir {
90         font-family: monospace;
91 }
92 div.ls-dir a {
93         font-weight: bold;
94 }
95 th.filesize, td.filesize {
96         text-align: right;
97 }
98 td.filesize {
99         font-family: monospace;
100 }
101 td.filemode {
102         font-family: monospace;
103 }
104
105 td.blob {
106         white-space: pre;
107         font-family: monospace;
108         background-color: white;
109 }
110
111 table.nowrap td {
112         white-space: nowrap;
113 }
114
115 table.commit-info {
116         border-collapse: collapse;
117         margin-top: 1.5em;
118 }
119 table.commit-info th {
120         text-align: left;
121         font-weight: normal;
122         padding: 0.1em 1em 0.1em 0.1em;
123 }
124 table.commit-info td {
125         font-weight: normal;
126         padding: 0.1em 1em 0.1em 0.1em;
127 }
128 div.commit-subject {
129         font-weight: bold;
130         font-size: 125%;
131         margin: 1.5em 0em 0.5em 0em;
132         padding: 0em;
133 }
134 div.commit-msg {
135         white-space: pre;
136         font-family: monospace;
137 }
138 table.diffstat {
139         border-collapse: collapse;
140         margin-top: 1.5em;
141 }
142 table.diffstat th {
143         font-weight: normal;
144         text-align: left;
145         text-decoration: underline;
146         padding: 0.1em 1em 0.1em 0.1em;
147         font-size: 100%;
148 }
149 table.diffstat td {
150         padding: 0.1em 1em 0.1em 0.1em;
151         font-size: 100%;
152 }
153 table.diffstat td span.modechange {
154         padding-left: 1em;
155         color: red;
156 }
157 table.diffstat td.add a {
158         color: green;
159 }
160 table.diffstat td.del a {
161         color: red;
162 }
163 table.diffstat td.upd a {
164         color: blue;
165 }
166 table.diffstat td.summary {
167         /* border-top: solid 1px black; */
168         color: #888;
169         padding-top: 0.5em;
170 }
171
172 table.diff td {
173         border: solid 1px black;
174         font-family: monospace;
175         white-space: pre;
176 }
177
178 table.diff td div.hunk {
179         background: #ccc;
180 }
181
182 table.diff td div.add {
183         color: green;
184 }
185
186 table.diff td div.del {
187         color: red;
188 }
189
190 .sha1 {
191         font-family: courier;
192         font-size: 90%;
193 }
194 .left {
195         text-align: left;
196 }
197 .right {
198         text-align: right;
199 }