]> git.r.bdr.sh - rbdr/r.bdr.sh/blobdiff - jekyll/css/application.css
Add dark mode support
[rbdr/r.bdr.sh] / jekyll / css / application.css
index 673e3a40b7ceabe1bbe22c81d346c68a60edd1e2..df94fa6fdc7e9f1fcd7818113e120831d07cdf4d 100644 (file)
-body {background-color: #fff}
-a.logo {display: block; margin: 1.538em 0 0 1.538em; width: 44.615em; height: 7.692em; background-image: url(/img/header.gif)}
-a.logo span {display:none}
-em {color:#99a3a4}
-
-nav ul{
-  list-style: none;
-  margin: 1.536em;
-}
-
-nav ul li{
-  display: inline;
-  font-family: 'Oswald', sans-serif;
-  text-transform: uppercase;
-  font-weight: 400;
-  font-size: 2.769em;
-  margin: 0.555em;
-}
-
-nav ul li a{
-  color: #54575a;
-  text-decoration: none;
+body {
+  margin: 0;
+  background-color: white;
+  font-family: times, 'Times New Roman', serif;
+  font-smooth: never;
+  -webkit-font-smoothing: none;
 }
 
-nav ul li a:hover,
-nav ul li a:active,
-nav ul li a:focus {
-  color: #74777a;
-  text-decoration: none;
+h1 a, h1 a:visited {
+  color: black;
 }
 
 .main-container {
-  margin: 3.077em 0;
+  margin: 20px 0;
 }
 
-.postcontainer{
-  margin: 2em 0;
-  font-family: 'Signika', sans-serif;
-  letter-spacing: 0.03em;
+h1,
+h2,
+h3 {
+  margin-left: 10px;
   font-weight: 300;
-  color: #03090f;
 }
 
-.postcontainer h1,
-.postcontainer h2,
-.postcontainer h3 {
-  font-family: 'Oswald', sans-serif;
-  text-transform: uppercase;
-  font-weight: 300;
+h1 {
+  font-size: 3.33em;
 }
 
-.postcontainer h1{
-  color: #d30058;
-  margin: 0.666em 1.333em 0;
+h2 {
+  font-size: 1.61em;
 }
 
-.postcontainer h2 {
-  color:#99a3a4;
-  font-size: 1.692em;
+a {
+  color: blue;
 }
 
-.postcontainer h3{
-  color:#99a3a4;
-  font-size: 1.384em;
+a:visited {
+  color: purple;
 }
 
-.postcontainer.blue h1 {color: #0081cb}
-.postcontainer.green h1 {color: #43da30}
-.postcontainer.grey h1 {color: #9e978e}
-.postcontainer.yellow h1 {color: #ffda00}
-.postcontainer.orange h1 {color: #fd3839}
-.postcontainer.red h1 {color: #f32240}
-.postcontainer.cyan h1 {color: #74d0eb}
-.postcontainer.purple h1 {color: #400098}
-
-.post-meta {
-  margin-left: 3.077em;
+ul, p {
+  margin-left: 10px;
 }
 
-.post-meta > div {
-  display: inline-block;
-  font-size: 1.077em;
+ul {
+  list-style: square;
 }
 
-.post-meta .post-date{width: 5.714em}
-.post-date a {color:#99a3a4}
-.post-tags a {color:#d30058; text-decoration: underline}
-
-.postcontainer.blue .post-tags a {color: #0081cb}
-.postcontainer.green .post-tags a {color: #43da30}
-.postcontainer.grey .post-tags a {color: #9e978e}
-.postcontainer.yellow .post-tags a {color: #ffda00}
-.postcontainer.orange .post-tags a {color: #fd3839}
-.postcontainer.red .post-tags a {color: #f32240}
-.postcontainer.cyan .post-tags a {color: #74d0eb}
-.postcontainer.purple .post-tags a {color: #400098}
-
-.post-image {height: 36.923em; background-color: #d30058; margin-top: 3.077em}
-
-.postcontainer.blue .post-image {background-color: #0081cb}
-.postcontainer.green .post-image {background-color: #43da30}
-.postcontainer.grey .post-image {background-color: #9e978e}
-.postcontainer.yellow .post-image {background-color: #ffda00}
-.postcontainer.orange .post-image {background-color: #fd3839}
-.postcontainer.red .post-image {background-color: #f32240}
-.postcontainer.cyan .post-image {background-color: #74d0eb}
-.postcontainer.purple .post-image {background-color: #400098}
-
-.postcontent {margin: 1.538em 3.077em;
-  -webkit-column-width: 36.923em;
-     -moz-column-width: 36.923em;
-          column-width: 36.923em;
-  -webkit-column-gap: 6.154em;
-     -moz-column-gap: 6.154em;
-          column-gap: 6.154em;
+li {
+  line-height: 1.82em;
 }
 
-.postcontent p, .postcontent li{
-  font-size: 1.077em;
-  line-height: 1.6em;
-  padding: 8px 0;
-  color: #54575a;
-  font-family: "Lato", sans-serif;
+img,
+video {
+  max-width: 100vw;
 }
 
-.postcontent a {color: #d30058}
-.blue .postcontent a {color: #0081cb}
-.green .postcontent a {color: #43da30}
-.grey .postcontent a {color: #9e978e}
-.yellow .postcontent a {color: #ffda00}
-.orange .postcontent a {color: #fd3839}
-.red .postcontent a {color: #f32240}
-.cyan .postcontent a {color: #74d0eb}
-.purple .postcontent a {color: #400098}
-
-.postcontent strong{
-  font-weight: 400;
-}
-
-.go-to-top {color:#99a3a4; margin: 1.538em 3.077em; display: block}
-
-.main-container section,
-.main-container aside{ text-align: left}
+/* Dark mode overrides */
+@media (prefers-color-scheme: dark) {
+  body {
+    background-color: white;
+    color: white;
+  }
 
-/* List pages */
+  h1 a, h1 a:visited {
+    color: white;
+  }
 
-.related  {margin: 0 3.077em}
-.related ul {margin: 0 1.538em}
-.related li {font-size: 1.077em; font-family: "Lato"}
-.related a {color: #d30058}
+  a {
+    color: #53FFFF;
+  }
 
-.related a.blue {color: #0081cb}
-.related a.green {color: #43da30}
-.related a.grey {color: #9e978e}
-.related a.yellow {color: #ffda00}
-.related a.orange {color: #fd3839}
-.related a.red {color: #f32240}
-.related a.cyan {color: #74d0eb}
-.related a.purple {color: #400098}
-
-.related h1{
-  font-family: 'Oswald', sans-serif;
-  text-transform: uppercase;
-  font-weight: 300;
-  padding-bottom: 0.666em;
-  color:#99a3a4;
+  a:visited {
+    color: #FF55FF;
+  }
 }
-
-/* Paginator */
-
-.paginator {font-size: 1.077em; margin: 2.857em; font-family: "Lato", sans-serif}
-.paginator a{color:#99a3a4}