depp

No frills static page generator for Git repositories

git clone https://git.8pit.net/depp.git

 1{{/* Display TDs below each other on small devices */}}
 2@media (max-width: 60em) {
 3	table td {
 4		display: table;
 5		padding: 0px !important; {{/* overwrite td.description */}}
 6	}
 7
 8	table tr {
 9		display: block;
10		margin: 10px 0px 10px 0px;
11	}
12}
13
14table {
15	text-align: left;
16	max-width: 60em;
17	width: 100%;
18}
19
20table td.description {
21	padding: 0.15em 0.5em;
22}
23
24table.commits td.date {
25	font-style: italic;
26	color: var(--color-grey);
27}
28
29table.commits td.author {
30	color: var(--color-grey);
31}