advent-of-code

Entries to advent of code, multiple years
git clone git://git.finwo.net/misc/advent-of-code
Log | Files | Refs

global.less (410B)


      1 @import url('https://fonts.googleapis.com/css2?family=Material+Icons+Round');
      2 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
      3 
      4 :root {
      5   --col-primary: #335;
      6   --col-text-icons: #FFF;
      7 }
      8 
      9 * {
     10   box-sizing: border-box;
     11   line-height: 1.5em;
     12 }
     13 
     14 html, body {
     15   font-family: Poppins, sans-serif;
     16   margin     : 0;
     17   padding    : 0;
     18 }
     19 
     20 h1, h2, h3 { font-weight: 500; }