created base css

This commit is contained in:
CJ Patoilo 2015-12-25 22:51:50 -03:00
parent ac29112a33
commit 9ed83a94c2
1 changed files with 25 additions and 0 deletions

25
sass/_Base.sass Normal file
View File

@ -0,0 +1,25 @@
// Base
//
// NOTE
// The base font-size is set at 62.5% for having the convenience
// of sizing rems in a way that is similar to using px. 1.6rem=16px
html
box-sizing: border-box
font-size: 62.5%
body
color: $color-secondary
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif
font-size: 1.6em // currently ems cause chrome bug misinterpreting rems on body element
font-weight: 300
letter-spacing: .01em
line-height: 1.6
// Box Sizing FTW
*,
*:after,
*:before
box-sizing: border-box