all repos — cgit @ 0de2055b75735986ff04aed8f534ecf06248e5e1

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: 0.5em;
  7}
  8
  9
 10h2 {
 11	font-size: normal;
 12	font-weight: bold;
 13	margin-bottom: 0.1em;
 14}
 15
 16a {
 17	color: blue;
 18	text-decoration: none;
 19}
 20
 21a:hover {
 22	text-decoration: underline;
 23}
 24
 25table.list {
 26	border: solid 1px black;
 27	border-collapse: collapse;
 28	border: solid 1px #aaa;
 29}
 30
 31table.list th {
 32	font-weight: bold;
 33	background: #ddd;
 34	border-bottom: solid 1px #aaa;
 35	padding: 0.1em 0.5em 0.1em 0.5em;
 36	vertical-align: baseline;
 37}
 38table.list td {
 39	border: none;
 40	padding: 0.1em 0.5em 0.1em 0.5em;
 41	background: white;
 42}
 43
 44img {
 45	border: none;
 46}
 47
 48
 49div#header {
 50	background-color: #ddd;
 51	padding: 0.25em 0.25em 0.25em 0.5em;
 52	font-size: 150%;
 53	font-weight: bold;
 54	border: solid 1px #aaa;
 55	vertical-align: middle;
 56}
 57div#header img#logo {
 58	float: right;
 59}
 60
 61div#content {
 62	margin: 0.5em 0.5em;
 63}
 64
 65div#blob {
 66	border: solid 1px black;
 67}
 68
 69div.error {
 70	color: red;
 71	font-weight: bold;
 72	margin: 1em 2em;
 73}
 74div.ls-dir a {
 75	font-weight: bold;
 76}
 77th.filesize, td.filesize {
 78	text-align: right;
 79}
 80th.filemode, td.filemode {
 81	text-align: center;
 82}
 83
 84td.blob {
 85	white-space: pre;
 86	font-family: courier;
 87	font-size: 100%;
 88}
 89
 90table.log td {
 91	white-space: nowrap;
 92}
 93
 94table.commit-info {
 95	border-collapse: collapse;
 96	margin-top: 1em;
 97	
 98}
 99table.commit-info th {
100	text-align: left;
101	font-weight: normal;
102	padding: 0.1em 1em 0.1em 0.1em;
103}
104table.commit-info td {
105	font-weight: normal;
106	padding: 0.1em 1em 0.1em 0.1em;
107}
108div.commit-subject {
109	font-weight: bold;
110	font-size: 110%;
111	margin: 1em 0em 1em;
112}
113div.commit-msg {
114	white-space: pre;
115	font-family: courier;
116	font-size: 100%;
117}
118.sha1 {
119	font-family: courier;
120	font-size: 90%;
121}
122.left {
123	text-align: left;
124}
125.right {
126	text-align: right;
127}