]> git.r.bdr.sh - rbdr/r.bdr.sh/blobdiff - css/style.css
Add a padding
[rbdr/r.bdr.sh] / css / style.css
index 8e3f212a77775c0e7a30ad965cabff6c05b463be..547fb13e242b7d68e1b6b40163ff9b20d627a7b0 100644 (file)
@@ -1,17 +1,93 @@
+html {
+  scroll-behavior: smooth;
+}
+
 body {
-  font-family: "Hiragino Mincho ProN", sans-serif;
+  font-size: 1em;
+  font: -apple-system-body;
+  font-family: "Hoefler Text", "Times New Roman", serif;
+  font-feature-settings: "liga" 1, "dlig" 1, "pnum" 1;
+  line-height: 1.6;
+  letter-spacing: 0.02em;
+  text-align: justify;
+}
+
+aside {
+  clear: both;
+  padding-top: 2em;
+}
+
+::selection {
+  color: #00f;
+  background-color: #e8e8e8;
+}
+
+@media only screen and (min-width: 500px) {
+  body {
+    overflow-x: auto;
+  }
+
+  .columned {
+    width: max-content;
+    padding: 0 0 0 66px;
+  }
+
+  .columned .h2:not(:only-child) {
+    float: left;
+    margin: 0 40px;
+  }
+
+  .columned .h2:not(:only-child) h2 {
+    width: 14.6em;
+  }
+
+  .columned .h2:not(:only-child) .h3,
+  .columned .h2:not(:only-child) li,
+  .columned .h2:not(:only-child) p {
+    width: 24em;
+  }
+
+  .columned .h2:not(:only-child) pre { width: 25em }
+
+  header {
+    float: left;
+    margin-top: 1.2em;
+  }
+}
+
+.columned .h2:first-of-type pre {
+  line-height: 1;
 }
 
+blockquote, p, article > div {
+  margin: 0 0.3em;
+  max-width: 45em
+}
+pre { max-width: 55em }
+blockquote {
+  border-left: 4px solid #ccc;
+  padding-left: 10px;
+}
+
+br { display: none }
+h1, h2, h3 { font-weight: normal }
+h1 { font-size: 1em }
+h2 { font-size: 1.65em }
+h3 { font-size: 1.25em }
 pre {
-  font-family: Monaco, monospace;
-  background-color: #222;
+  font-family: courier, monospace;
+  font-size: 0.875em;
+  background-color: #eee;
+  overflow-x: auto;
+  padding: 1em;
 }
 
 canvas {
   width: 64px;
   height: 64px;
-  display: inline-block;
-  background-color: gainsboro;
+  display: block;
+  background-color: #000;
+  border: 1px solid #000;
 }
 
 @media (prefers-color-scheme: dark) {
@@ -20,11 +96,22 @@ canvas {
     background: #000;
   }
 
+  canvas {
+    background-color: #fff;
+    border: 1px solid #fff;
+  }
+
   a {
     color: #5dc1fd;
+    display: inline-block;
+    min-height: 48px;
   }
 
   a:visited {
     color: #ed6eff;
   }
+
+  pre {
+    background-color: #222;
+  }
 }