website

Sources for my personal website
git clone https://git.svemoe.de/website.git
Log | Files | Refs | README

style.css (393B)


      1 body {
      2 	max-width: 800px ;
      3 	margin: 16px auto ;
      4 	padding: 0 16px ;
      5 	font-family: sans-serif;
      6 }
      7 
      8 h1,h2,h3 {
      9  color: #EF6C01;
     10 }
     11 
     12 a {
     13  color: #20A2FE
     14 }
     15 
     16 code {
     17  background: #8C8C8C;
     18 }
     19 
     20 pre code {
     21  background: white;
     22 }
     23 
     24 pre {
     25  margin-left: 2em;
     26  font:115% monospace;
     27 }
     28 
     29 @media (prefers-color-scheme: dark) {
     30 	body {
     31 		background: black ;
     32 		color: white ;
     33 	}
     34 
     35  pre code {
     36   background: black;
     37  }
     38 }