riazj.com

source code for this website
git clone https://riazj.com/git/riazj.com
Log | Files | Refs | LICENSE

style.css (673B)


      1 body {
      2   color: #f8f8f8;
      3   background: #111;
      4 
      5   margin: 0 auto;
      6   line-height: 1.5;
      7   padding: 0 1em 1em;
      8   max-width: 40em;
      9 
     10   font-family:
     11     -apple-system,
     12     BlinkMacSystemFont,
     13     avenir next,
     14     avenir,
     15     segoe ui,
     16     helvetica neue,
     17     helvetica,
     18     Cantarell,
     19     Ubuntu,
     20     roboto,
     21     noto,
     22     arial,
     23     sans-serif;
     24   font-size: 1.25em;
     25 }
     26 
     27 time {
     28   font-family: monospace;
     29 }
     30 
     31 h2 {
     32   margin-top: 1em;
     33   padding-top: 1em;
     34 }
     35 
     36 a {
     37   color: #1ad;
     38   text-decoration: none;
     39 }
     40 
     41 a:hover,
     42 a:focus {
     43   text-decoration: underline;
     44 }
     45 
     46 span {
     47   display: none;
     48 }
     49 
     50 pre {
     51   white-space: pre-wrap;
     52   overflow-wrap: anywhere;
     53   padding: 1em;
     54   border: 1px solid #333;
     55 }