depp

No frills static page generator for Git repositories

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

 1pre.blob {
 2	overflow: auto;
 3}
 4
 5pre.blob a {
 6	color: var(--color-grey);
 7	padding-right: 1ch;
 8
 9	{{/* Ensure background is not overwritten on :target */}}
10	background-color: var(--color-white) !important;
11
12	{{/* Ensure line numbers are not selected */}}
13	user-select: none;
14}
15
16pre.blob a:hover {
17	color: var(--color-blue);
18}
19
20.highlighted, code:target {
21	display: inline-block;
22	min-width: 100%;
23	background-color: var(--color-yellow);
24}