summaryrefslogtreecommitdiff
path: root/src/static/main.css
diff options
context:
space:
mode:
authoruser <user@node5.net>2024-07-19 23:32:40 +0200
committeruser <user@node5.net>2024-07-19 23:32:40 +0200
commit78e3f6ea427a10edaeac1c056f8a3ab5640e2a0c (patch)
tree0bd7a010f00fb07c15577e7fea9fb2128239b82f /src/static/main.css
Initial commit - displays events
Diffstat (limited to 'src/static/main.css')
-rw-r--r--src/static/main.css72
1 files changed, 72 insertions, 0 deletions
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%;
+}
+