summaryrefslogtreecommitdiff
path: root/assets/style.css
diff options
context:
space:
mode:
authorstale <redkugelblitzin@gmail.com>2022-07-01 15:15:05 -0300
committerstale <redkugelblitzin@gmail.com>2022-07-01 15:15:05 -0300
commitc68dc16bef476203a4424c4b857f16eeb8f0e119 (patch)
tree2f3fe4580f5b6d0f798aad6a9d680f44556e7f55 /assets/style.css
initial commit, but with scarequotes
Diffstat (limited to 'assets/style.css')
-rw-r--r--assets/style.css86
1 files changed, 86 insertions, 0 deletions
diff --git a/assets/style.css b/assets/style.css
new file mode 100644
index 0000000..49e832e
--- /dev/null
+++ b/assets/style.css
@@ -0,0 +1,86 @@
+@font-face {
+ font-family: vt323;
+ src: url("./f.ttf");
+}
+#board-container {
+ font-size: 80px;
+ line-height: 48px;
+ margin: 2vw;
+ position: relative;
+ top: 0px;
+ left 0px;
+}
+#cursor-frame {
+ position: absolute;
+ top: 0px;
+ left: 0px;
+}
+
+body {
+ font-family: vt323, monospace;
+ font-size: 20pt;
+ background-color: black;
+ color: white;
+ margin: 0;
+}
+.unsel {
+ -webkit-touch-callout: none;
+ -webkit-user-select: none;
+ -khtml-user-select: none;
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+.cursor {
+ font-size: 20pt;
+ padding: 0;
+ pointer-events: none;
+ z-index: 1;
+}
+.cursor * {
+ margin: 0 0;
+}
+.cursor-name {
+ background-color: #000000c0;
+ padding: 0 0.1em;
+ line-height: initial;
+}
+
+a {
+ text-decoration: none;
+ color: #8b8be8;
+}
+
+#miscinfo {
+ flex-grow: 1;
+}
+
+.statusline {
+ display: flex;
+ position: sticky;
+ background-color: black;
+ width: 96vw;
+ padding: 0 2vw;
+ bottom: 0px;
+ left: 0px;
+}
+.statusline * {
+ margin: 0.5em 2em 0 0;
+}
+
+/* i was today years old when i learned that css selector declaration order matters */
+/* cent should come after statusline, so it overwrites statusline's props */
+.cent {
+ width: 80vw;
+ margin: 0 auto;
+}
+
+span, h1, h4 {
+ margin: 0 auto;
+}
+
+h4 { margin-left: 1em; }
+
+a :visited {
+ color: inherit;
+}