depp

No frills static page generator for Git repositories

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

 1#readme {
 2	max-width: 60em;
 3	line-height: 1.5;
 4	text-align: justify;
 5}
 6
 7@media (max-width: 60em) {
 8	{{/* Raw READMEs should not overflow on smaller devices */}}
 9	#readme pre.raw { overflow: auto !important; }
10}
11
12#readme img {
13	width: auto;
14	height: auto;
15	max-width: 100%;
16	max-height: 100%;
17}
18
19#readme pre.raw {
20	padding: 0px;
21	margin: 0px;
22	overflow: visible;
23}
24
25#readme pre {
26	margin: 1em 0em 1em 0em;
27	overflow: auto;
28}
29
30#readme pre code {
31	width: auto;
32	min-width: 100%;
33	padding: 1em;
34	box-sizing: border-box;
35}
36
37#readme code {
38	display: inline-block;
39	padding: .2em .4em;
40	line-height: normal;
41	border-radius: 5px;
42	background: var(--color-athens-grey);
43}
44
45#readme p {
46	padding: 5px 0px 5px 0px;
47}
48
49#readme a {
50	color: var(--color-blue);
51}