nomxz

an edition to my previous website. now minimalist.
git clone git://git.b1t.dev/nomxz.git
Log | Files | Refs | README

base.scss (405B)


      1 @charset 'utf-8';
      2 
      3 
      4 @font-face {
      5     font-family: 'Terminal';
      6 	src: url('./fonts/ibm.tff') format('tff');
      7 }
      8 
      9 $base-font-family: 'Terminal', monospace !default;
     10 $base-font-size:    12px !default;
     11 
     12 body { 
     13 	   background-color: var(--background-color);   
     14 	   font-family: $base-font-family;  
     15 	   font-size: $base-font-size;  
     16 	   margin-top: 25px;
     17   	   padding: 0;
     18 }
     19 
     20 
     21 a {
     22 	text-decoration: underline;
     23 }