]> git.r.bdr.sh - rbdr/r.bdr.sh/blobdiff - jekyll/css/application.css
Address HTML warnings
[rbdr/r.bdr.sh] / jekyll / css / application.css
index 51500642a913793360df342ec3552d36815e15e3..8afbd7387b6da94e0e423a14deffaadb57afa773 100644 (file)
@@ -1,38 +1,32 @@
+html {
+  font-size: 10px;
+}
+
 body {
   margin: 0;
   background-color: white;
   font-family: times, 'Times New Roman', serif;
-  font-smooth: never;
-  -webkit-font-smoothing: none;
-}
-
-h1 a {
-  color: black;
 }
 
-h1 a:visited {
+header a, header a:visited {
   color: black;
 }
 
-em {color:#99a3a4}
-
-.main-container {
-  margin: 20px 0;
-}
-
-h1,
-h2,
-h3 {
-  margin-left: 10px;
+h1 {
+  display: inline-block;
+  margin-left: 1rem;
   font-weight: 300;
 }
 
-h1 {
-  font-size: 3.33em;
+header {
+  margin: -0.3em 0 0 -0.1em;
+  font-size: 9.6em;
+  font-style: italic;
+  text-transform: uppercase;
 }
 
-h2 {
-  font-size: 1.61em;
+h1 {
+  font-size: 4.8em;
 }
 
 a {
@@ -44,18 +38,87 @@ a:visited {
 }
 
 ul, p {
-  margin-left: 10px;
+  font-size: 1.8rem;
+  line-height: 1.28em;
+  margin-left: 1em;
+  max-width: 50em;
+  font-family: 'Helvetica Neue', Arial, sans-serif;
 }
 
-ul {
-  list-style: square;
+li {
+  display: block;
 }
 
-li {
+li p {
+  display: inline-block;
   line-height: 1.82em;
+  margin: 0;
+}
+
+span {
+  display: inline;
+  color: grey;
 }
 
 img,
 video {
+  display: block;
   max-width: 100vw;
 }
+
+header a, h1, p {
+  background-color: white;
+}
+
+/* Dark mode overrides */
+@media (prefers-color-scheme: dark) {
+  body {
+    background-color: black;
+    color: white;
+  }
+
+  header a, header a:visited {
+    color: white;
+  }
+
+  a {
+    color: #53FFFF;
+  }
+
+  a:visited {
+    color: #FF55FF;
+  }
+
+  a[href^="telnet"] {
+    color: #55FF55;
+  }
+
+  span {
+    color: #FFEC27;
+  }
+
+  header a, h1, p {
+    background-color: black;
+  }
+}
+
+/*
+ * Mini header
+ */
+@media (max-width: 600px) {
+  header {
+    font-size: 4.8em;
+  }
+}
+
+/*
+ * Breadsticks
+ */
+canvas.background {
+  width: 100%;
+  height: 100%;
+  position: fixed;
+  top: 0;
+  left: 0;
+  z-index: -1;
+}