summaryrefslogtreecommitdiff
path: root/assets/style.css
diff options
context:
space:
mode:
authorstale <redkugelblitzin@gmail.com>2022-06-05 20:43:32 -0300
committerstale <redkugelblitzin@gmail.com>2022-06-05 20:43:32 -0300
commite00fa116c51e728e341e48e4c5f9f09cf4d416fc (patch)
tree9dc60cd8c915ee0637ce73b765937c36cbf0fbb0 /assets/style.css
parentaeb7beb3f9b154f4aefbaa1c08d822ed572461fb (diff)
code cleanup, floodfill algo changed to iterative
Diffstat (limited to 'assets/style.css')
-rw-r--r--assets/style.css20
1 files changed, 11 insertions, 9 deletions
diff --git a/assets/style.css b/assets/style.css
index 16ca7f0..49e832e 100644
--- a/assets/style.css
+++ b/assets/style.css
@@ -15,10 +15,6 @@
top: 0px;
left: 0px;
}
-.cent {
- width: 80vw;
- margin: 0 auto;
-}
body {
font-family: vt323, monospace;
@@ -50,17 +46,16 @@ body {
line-height: initial;
}
-#rlist a, #rlist span {
+a {
text-decoration: none;
- color: #dfdfff;
- background-color: #3c3c3c;
+ color: #8b8be8;
}
#miscinfo {
flex-grow: 1;
}
-#statusline {
+.statusline {
display: flex;
position: sticky;
background-color: black;
@@ -69,10 +64,17 @@ body {
bottom: 0px;
left: 0px;
}
-#statusline * {
+.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;
}