angelovcom.net

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

_typography.scss (559B)


      1 
      2 html {
      3 	font-size: $font__size_base;
      4 }
      5 
      6 body {
      7 	-webkit-font-smoothing: antialiased;
      8 	-moz-osx-font-smoothing: grayscale;
      9 	color: $color__text-main;
     10 	@include font-family( $font__body );
     11 	font-weight: 400;
     12 	font-size: 1em;
     13 	line-height: $font__line-height-body;
     14 	margin: 0;
     15 	text-rendering: optimizeLegibility;
     16 }
     17 
     18 button,
     19 input,
     20 select,
     21 optgroup,
     22 textarea {
     23 	color: $color__text-main;
     24 	@include font-family( $font__body );
     25 	font-weight: 400;
     26 	line-height: $font__line-height-body;
     27 	text-rendering: optimizeLegibility;
     28 }
     29 
     30 @import "headings";
     31 
     32 @import "copy";