simple-hugo

A simple Hugo theme I use for my website
git clone git://git.christianermann.dev/simple-hugo
Log | Files | Refs | README | LICENSE

styles.css (1177B)


      1 * {
      2     margin: 0;
      3     padding: 0;
      4 }
      5 
      6 html {
      7     overflow-y: scroll;
      8     background-color: #fffefc;
      9     color: #444;
     10 }
     11 
     12 time {
     13     font-weight: bold;
     14 }
     15 
     16 body {
     17     max-width: 600px;
     18     margin: 40px auto;
     19     padding: 0 10px;
     20     font: 14px/1.5 monospace;
     21 }
     22 
     23 a:link, a:visited, a:active, a:hover {
     24     color: #24a5d4;
     25 }
     26 
     27 a:link, a:visited, a:active {
     28     text-decoration: none;
     29 }
     30 
     31 a:hover {
     32     text-decoration: underline;
     33 }
     34 
     35 h1, h2, h3 {
     36     line-height: 1.2;
     37 }
     38 
     39 header {
     40     margin-bottom: 20px;
     41 }
     42 
     43 #title {
     44     margin-bottom: 5px;
     45 }
     46 
     47 .summary {
     48     margin-top: 20px;
     49     margin-bottom: 20px;
     50 }
     51 
     52 .summary_metadata {
     53    margin-top: 5px;
     54    margin-bottom: 5px;
     55 }
     56 
     57 .summary_body {
     58     margin-top: 5px;
     59     margin-bottom: 5px;
     60 }
     61 
     62 footer {
     63     margin-top: 20px;
     64 }
     65 
     66 ul {
     67     margin-top: 20px;
     68     margin-left: 20px;
     69     margin-bottom: 20px;
     70 }
     71 
     72 article {
     73     margin-top: 20px;
     74     margin-bottom: 20px;
     75 }
     76 
     77 article p {
     78     margin-top: 15px;
     79     margin-bottom: 15px;
     80 }
     81 
     82 .highlight {
     83     margin-top: 10px;
     84     margin-bottom: 10px;
     85 }
     86 
     87 .highlight pre {
     88     border-style: solid;
     89     padding-top: 5px;
     90     padding-left: 10px;
     91     padding-bottom: 5px;
     92 }
     93 
     94 code {
     95     white-space: pre-wrap;
     96 }