all repos — cgit @ 8960d267ed2029ad6695488614c015d506de465c

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