From 4c4a001cacd9c3e1c2552dbcaf50165091a82ac1 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Sat, 11 Feb 2023 11:24:22 +0100 Subject: Separated out weblog from webserver --- html/blog.css | 76 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ html/favicon.ico | Bin 0 -> 2238 bytes 2 files changed, 76 insertions(+) create mode 100644 html/blog.css create mode 100644 html/favicon.ico (limited to 'html') diff --git a/html/blog.css b/html/blog.css new file mode 100644 index 0000000..5277980 --- /dev/null +++ b/html/blog.css @@ -0,0 +1,76 @@ +body { + font-family: "sans-serif"; +} + +figcaption { + text-align: center; + font-size: 8px; + color: #808080; +} + +figure { + display: inline-block; +} + +h2 { + margin: 25px 0px 3px 0px; +} + +div.date { + font-size: 8px; + color: #808080; + margin: 0px 0px 10px 0px; +} + +div.impressum { + margin: 500px 0px 0px 0px; +} + +.citation { + font-style:italic; + margin-left: 50px; + margin-right: 50px; +} + +.reference { + text-align: right; + margin-bottom: 30px; +} + + +.mobile { + width: 300px; + border-width: 80px 15px 80px 15px; + border-style: solid; + border-radius: 30px; + border-color: #000000; +} + +.logo { + display: block; + margin: 0 auto; +} + +.screenshot { + width: 400px; + border: 2px solid; + border-color: #8888AA; +} + +img.banner { + vertical-align: -5px; +} + +@media only screen and (min-width: 1px) and (max-width: 630px) { +} + +@media only screen and (min-width: 631px) and (max-width: 950px) { +} + +@media only screen and (min-width: 951px) { + div.page { + max-width: 950px; + width: 100%; + margin: 0 auto; + } +} diff --git a/html/favicon.ico b/html/favicon.ico new file mode 100644 index 0000000..e8cbddb Binary files /dev/null and b/html/favicon.ico differ -- cgit v1.2.3