From 9ed83a94c21a1f4e74bd3a32d96872e52569e899 Mon Sep 17 00:00:00 2001 From: CJ Patoilo Date: Fri, 25 Dec 2015 22:51:50 -0300 Subject: [PATCH] created base css --- sass/_Base.sass | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 sass/_Base.sass diff --git a/sass/_Base.sass b/sass/_Base.sass new file mode 100644 index 0000000..0846983 --- /dev/null +++ b/sass/_Base.sass @@ -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