This commit is contained in:
gurkenhabicht 2022-10-29 01:27:18 +02:00
parent be42575afe
commit f9217c974b
2 changed files with 10 additions and 7 deletions

View File

@ -1,7 +1,11 @@
html *{ font-family: Fira Mono, DejaVu Sans Mono, Menlo, Consolas, Liberation Mono, Monaco, Lucida Console, monospace;}
body { margin:0; padding: 0; text-decoration: none;}
blockquote { text-align: center; font-size: 16px; font-style: normal; line-height: 30px;}
pre { font-size: 14px; padding-left: 2ch;padding-top:2ch; padding-bottom: 2ch; overflow: auto; max-width: 100%; border-radius: 5px;}
html *{ font-family: Dejavu Sans Mono, Noto Sans Mono, Menlo, Consolas, Monaco, monospace; }
body { margin:0; padding: 0; text-decoration: none; }
h1 {font-size: 33px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 51px; }
h2 {font-size: 26px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 41px; }
h3 { font-size: 16px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 27px; }
p { font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 27px; }
blockquote { text-align: center; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 27px; }
pre { font-family: monospace; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 27px; padding-left: 2ch;padding-top:2ch; padding-bottom: 2ch; overflow: auto; max-width: 100%; border-radius: 5px;}
code { max-width: 100%; overflow: auto; }
img { max-width: 100%; }
hr { height: 0px; }
@ -53,7 +57,7 @@ details summary::marker { height: auto; content: "\1F4C1\20";}
/* 12em is the width of the columns */
flex: 0 0 12em;
/* experimental line height */
line-height: 1.8em;
line-height: 27px;
}
.HolyGrail-ads {
overflow: hidden;
@ -83,7 +87,6 @@ details summary::marker { height: auto; content: "\1F4C1\20";}
margin: 0em;
text-align: left;
/* experimental line height */
line-height: 1.5em;
list-style-position: inside;
}

View File

@ -66,7 +66,7 @@
{%- for item in tree.children recursive %}
{%- set name = item.name.split('/')[-1] -%}
{%- if item.type != "directory" -%}
<li><a href="{{ item.name }}.html"> {{ name }}</a></li>
<li><a href="{{ item.name }}.html">{{ name }}</a></li>
{%- else -%}
{%- if item.children|length -%}
<details id={{ name }} ontoggle="linkClick(this); return false;" ><summary><!--i class='fas fa-folder'></i--!>{{ name[0]|upper }}{{ name[1:] }}</summary>