all repos — cgit @ 8596cda71d04cd49cb983aee7968d14cc58c030d

a hyperfast web frontend for git written in c

cgit.css (view raw)

  1body {
  2	font-family: arial;
  3	font-size: normal;
  4	background: white;
  5	padding: 0em;
  6	margin: 0em;
  7}
  8
  9
 10h2 {
 11	font-size: 120%;
 12	font-weight: bold;
 13	margin-bottom: 0.5em;
 14}
 15
 16a {
 17	color: blue;
 18	text-decoration: none;
 19}
 20
 21a:hover {
 22	text-decoration: underline;
 23}
 24
 25table.list {
 26	border: none;
 27	border-collapse: collapse;
 28}
 29table.list tr {
 30	background: white;
 31}
 32table.list tr:hover {
 33	background: #eee;
 34}
 35table.list tr.nohover:hover {
 36	background: white;
 37}
 38table.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}
 44table.list td {
 45	border: none;
 46	padding: 0.1em 0.5em 0.1em 0.5em;
 47}
 48img {
 49	border: none;
 50}
 51table#layout {
 52	width: 100%;
 53	border-collapse: collapse;
 54	margin: 0px;
 55}
 56td#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}
 64td#header img#logo {
 65	float: right;
 66}
 67
 68td#header input {
 69	float: right;
 70	margin: 0.25em 1em;
 71}
 72td#header a {
 73	color: black;
 74}
 75
 76td#content {
 77	padding: 1em 0.5em;
 78}
 79
 80div#blob {
 81	border: solid 1px black;
 82}
 83
 84div.error {
 85	color: red;
 86	font-weight: bold;
 87	margin: 1em 2em;
 88}
 89div.ls-blob, div.ls-dir {
 90	font-family: monospace;
 91}
 92div.ls-dir a {
 93	font-weight: bold;
 94}
 95th.filesize, td.filesize {
 96	text-align: right;
 97}
 98td.filesize {
 99	font-family: monospace;
100}
101td.filemode {
102	font-family: monospace;
103}
104
105td.blob {
106	white-space: pre;
107	font-family: monospace;
108	background-color: white;
109}
110
111table.nowrap td {
112	white-space: nowrap;
113}
114
115table.commit-info {
116	border-collapse: collapse;
117	margin-top: 1.5em;
118}
119table.commit-info th {
120	text-align: left;
121	font-weight: normal;
122	padding: 0.1em 1em 0.1em 0.1em;
123}
124table.commit-info td {
125	font-weight: normal;
126	padding: 0.1em 1em 0.1em 0.1em;
127}
128div.commit-subject {
129	font-weight: bold;
130	font-size: 125%;
131	margin: 1.5em 0em 0.5em 0em;
132	padding: 0em;
133}
134div.commit-msg {
135	white-space: pre;
136	font-family: monospace;
137}
138table.diffstat {
139	border-collapse: collapse;
140	margin-top: 1.5em;
141}
142table.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}
149table.diffstat td {
150	padding: 0.1em 1em 0.1em 0.1em;
151	font-size: 100%;
152}
153table.diffstat td span.modechange {
154	padding-left: 1em;
155	color: red;
156}
157table.diffstat td.add a {
158	color: green;
159}
160table.diffstat td.del a {
161	color: red;
162}
163table.diffstat td.upd a {
164	color: blue;
165}
166table.diffstat td.summary {
167	/* border-top: solid 1px black; */
168	color: #888;
169	padding-top: 0.5em;
170}
171
172table.diff td {
173	border: solid 1px black;
174	font-family: monospace;
175	white-space: pre;
176}
177
178table.diff td div.hunk {
179	background: #ccc;
180}
181
182table.diff td div.add {
183	color: green;
184}
185
186table.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}