milligram/src/_Base.sass
2015-12-31 12:21:59 +01:00

24 lines
655 B
Sass
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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
box-sizing: inherit