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
13pre.blob a:hover {
14	color: var(--color-red);
15	text-decoration: none;
16}
17
18.highlighted, code:target {
19	display: inline-block;
20	min-width: 100%;
21	background-color: var(--color-yellow);
22}