created base css
This commit is contained in:
parent
ac29112a33
commit
9ed83a94c2
25
sass/_Base.sass
Normal file
25
sass/_Base.sass
Normal 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
|
Loading…
Reference in New Issue
Block a user