p0c-website

Proof of concepts for fun and profit
git clone https://git.in0rdr.ch/p0c-website.git
Log | Files | Refs | Pull requests | README | LICENSE

_font-stacks.scss (586B)


      1 @charset "UTF-8";
      2 
      3 /// Georgia font stack.
      4 ///
      5 /// @type List
      6 
      7 $georgia: "Georgia", "Cambria", "Times New Roman", "Times", serif;
      8 
      9 /// Helvetica font stack.
     10 ///
     11 /// @type List
     12 
     13 $helvetica: "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
     14 
     15 /// Lucida Grande font stack.
     16 ///
     17 /// @type List
     18 
     19 $lucida-grande: "Lucida Grande", "Tahoma", "Verdana", "Arial", sans-serif;
     20 
     21 /// Monospace font stack.
     22 ///
     23 /// @type List
     24 
     25 $monospace: "Bitstream Vera Sans Mono", "Consolas", "Courier", monospace;
     26 
     27 /// Verdana font stack.
     28 ///
     29 /// @type List
     30 
     31 $verdana: "Verdana", "Geneva", sans-serif;