website

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 5e7f392ae45484aa01886c447ecb6f1cc9deabd0
parent 8f23b0d6f9effedc84b4892bda3db4cb285bee34
Author: linus <mail@linus-behrens.de>
Date:   Thu, 31 Jul 2025 20:51:37 +0200

standard css added

Diffstat:
Acss/print.css | 31+++++++++++++++++++++++++++++++
Acss/style.css | 104+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Aoutput/print.css | 31+++++++++++++++++++++++++++++++
Aoutput/style.css | 104+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 270 insertions(+), 0 deletions(-)

diff --git a/css/print.css b/css/print.css @@ -0,0 +1,31 @@ +a, +a:visited { + color: inherit; + text-decoration: none; +} +/* HTML5 semantic tags: some (older) browsers display this inline by default */ +article, figcaption, figure, header, main { + display: block; +} +/* hide navigation menus when printing */ +nav, +#menuwrap, +.hidden { + display: none; +} +table, img { + border: 0; +} +table tr td { + padding: 2px 10px 2px 0px; +} +pre { + margin: 0; +} +code { + border: 3px solid #aaa; + display: block; + overflow-x: auto; + padding: 5px; + word-wrap: normal; +} diff --git a/css/style.css b/css/style.css @@ -0,0 +1,104 @@ +html { + overflow-y: scroll; +} +body { + background-color: #fff; + color: #000; + font-family: sans-serif; + margin: 0; + padding: 1ex; +} +/* HTML5 semantic tags: some (older) browsers display this inline by default */ +article, figcaption, figure, header, main, nav { + display: block; +} +/* center images */ +img { + display: block; + margin: 0 auto; +} +table, img { + border: 0; +} +hr { + border: 0; + border-bottom: 3px solid #aaa; + height: 3px; +} +h1 { + font-size: 140%; +} +h2 { + font-size: 120%; +} +h3 { + font-size: 120%; +} +h1, +h1 a, +h1 a:visited, +h2, +h2 a, +h2 a:visited, +h3, +h3 a, +h3 a:visited, +h1 a:hover, +h2 a:hover, +h3 a:hover { + color: inherit; + text-decoration: none; +} +table tr td { + padding: 2px 10px 2px 0px; +} +pre { + margin: 0; +} +code { + background-color: #eee; + border: 3px solid #aaa; + display: block; + font-family: monospace; + overflow-x: auto; + padding: 5px; + word-wrap: normal; +} +#menu td { + padding: 1ex 0; +} +#main { + border-top: 3px solid #aaa; +} +#menuwrap, +#menu, +#main { + margin: 0px auto; + max-width: 80ex; +} +#menu a { + font-weight: bold; + vertical-align: middle; +} +.hidden { + display: none; +} +@media (prefers-color-scheme: dark) { + body { + background-color: #000; + color: #bdbdbd; + } + code { + background-color: #111; + border-color: #222; + } + hr { + border-color: #222; + } + a { + color: #56c8ff; + } + #main { + border-top: 3px solid #222; + } +} diff --git a/output/print.css b/output/print.css @@ -0,0 +1,31 @@ +a, +a:visited { + color: inherit; + text-decoration: none; +} +/* HTML5 semantic tags: some (older) browsers display this inline by default */ +article, figcaption, figure, header, main { + display: block; +} +/* hide navigation menus when printing */ +nav, +#menuwrap, +.hidden { + display: none; +} +table, img { + border: 0; +} +table tr td { + padding: 2px 10px 2px 0px; +} +pre { + margin: 0; +} +code { + border: 3px solid #aaa; + display: block; + overflow-x: auto; + padding: 5px; + word-wrap: normal; +} diff --git a/output/style.css b/output/style.css @@ -0,0 +1,104 @@ +html { + overflow-y: scroll; +} +body { + background-color: #fff; + color: #000; + font-family: sans-serif; + margin: 0; + padding: 1ex; +} +/* HTML5 semantic tags: some (older) browsers display this inline by default */ +article, figcaption, figure, header, main, nav { + display: block; +} +/* center images */ +img { + display: block; + margin: 0 auto; +} +table, img { + border: 0; +} +hr { + border: 0; + border-bottom: 3px solid #aaa; + height: 3px; +} +h1 { + font-size: 140%; +} +h2 { + font-size: 120%; +} +h3 { + font-size: 120%; +} +h1, +h1 a, +h1 a:visited, +h2, +h2 a, +h2 a:visited, +h3, +h3 a, +h3 a:visited, +h1 a:hover, +h2 a:hover, +h3 a:hover { + color: inherit; + text-decoration: none; +} +table tr td { + padding: 2px 10px 2px 0px; +} +pre { + margin: 0; +} +code { + background-color: #eee; + border: 3px solid #aaa; + display: block; + font-family: monospace; + overflow-x: auto; + padding: 5px; + word-wrap: normal; +} +#menu td { + padding: 1ex 0; +} +#main { + border-top: 3px solid #aaa; +} +#menuwrap, +#menu, +#main { + margin: 0px auto; + max-width: 80ex; +} +#menu a { + font-weight: bold; + vertical-align: middle; +} +.hidden { + display: none; +} +@media (prefers-color-scheme: dark) { + body { + background-color: #000; + color: #bdbdbd; + } + code { + background-color: #111; + border-color: #222; + } + hr { + border-color: #222; + } + a { + color: #56c8ff; + } + #main { + border-top: 3px solid #222; + } +}