2015-12-26 01:51:50 +00:00
|
|
|
|
|
|
|
|
|
// Base
|
|
|
|
|
// ––––––––––––––––––––––––––––––––––––––––––––––––––
|
|
|
|
|
|
|
|
|
|
// 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
|
2015-12-31 11:21:59 +00:00
|
|
|
|
box-sizing: inherit
|