From 78e3f6ea427a10edaeac1c056f8a3ab5640e2a0c Mon Sep 17 00:00:00 2001 From: user Date: Fri, 19 Jul 2024 23:32:40 +0200 Subject: Initial commit - displays events --- src/static/main.css | 72 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 src/static/main.css (limited to 'src/static/main.css') diff --git a/src/static/main.css b/src/static/main.css new file mode 100644 index 0000000..e4d5aef --- /dev/null +++ b/src/static/main.css @@ -0,0 +1,72 @@ +body { + color: white; + background: black; + image-rendering: pixelated; + zoom: 2; +} + +#root-container { + margin: auto; + text-align: center; + width: min-content; +} + +.content { + margin-top: 0.1em; +} + +#top { + font-size: 1.36em; + color: grey; +} + +#program { + font-size: 1.64em; +} + +#news { + font-size: 1.36em; + text-align: left; +} + +.grey { + color: grey !important; +} + +input { + width: 80%; + height: 200%; + font-size: 1em; +} + +#news_input_label { + font-size: 0.7em; +} + +input[type=submit] { + width: fit-content; +} + + +progress { + -webkit-appearance: none; + background: #000; + border: none; + width: 93%; +} + +progress::-moz-progress-bar { background: #006688; } + +#progress-bar span { + position: absolute; + display: inline-block; + color: #fff; + text-align: right; +} + +#progress-bar { + display: block; + position: relative; + width: 100%; +} + -- cgit v1.2.3