alexkarle.com

Source for alexkarle.com
git clone git://git.alexkarle.com/alexkarle.com.git
Log | Files | Refs | README | LICENSE

style.css (579B) [raw]


      1 /* inlined via bin/genpage to limit network calls */
      2 html {
      3   max-width: 85ch;
      4   margin: auto;
      5   font-size: 1em;
      6   font-family: sans-serif;
      7   background: #ffffea; /* acme yellow */
      8 }
      9 code { font-family: consolas, courier, monospace; }
     10 h1 { font-size: 1.5em; }
     11 h2 { font-size: 1.2em; }
     12 h3 { font-size: 1.1em; }
     13 blockquote, pre {
     14   overflow: auto;
     15   padding: 10px;
     16   border: 2px solid black;
     17 }
     18 ::selection {
     19   background: #eeeda0;
     20 }
     21 a {
     22   color: #020097;
     23   text-decoration: none;
     24 }
     25 a:visited {
     26   color: #400070;
     27   text-decoration: none;
     28 }
     29 a:hover {
     30   text-decoration: underline;
     31 }