X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=source%2Fsass%2Felements%2F_elements.scss;fp=source%2Fsass%2Felements%2F_elements.scss;h=1f6eb2fb3b29746fb5a1b054292843d37a7c0d41;hb=ca309747b3ab36294a5d2d6eba7e2956ee43f024;hp=0000000000000000000000000000000000000000;hpb=650bdc61d1bda30b47a308594be84c8b9e8b1ac8;p=ghost-theme-willow.git diff --git a/source/sass/elements/_elements.scss b/source/sass/elements/_elements.scss new file mode 100644 index 0000000..1f6eb2f --- /dev/null +++ b/source/sass/elements/_elements.scss @@ -0,0 +1,52 @@ +/* +|------------------------------------------------------------------------------- +| Base elements / Un-classed elements +|------------------------------------------------------------------------------- +*/ +// All +* { + box-sizing: border-box; +} + +// Body, Html +body, html { + height: 100%; +} + +// Body +body { + min-width: 320px; + background: $c-grayLight; + color: $c-grayDark; + font-size: 16px; + line-height: 1.2em; + font-family: 'Merriweather', serif; +} + +// Anchors +a { + outline: none; + color: $c-grayDark; + @include transition(); + text-decoration: none; + + &:hover { + color: $c-grayAccent; + } +} + +// Headings +h1 { + margin: 0; + font-size: 1.4em; +} + +h2 { + margin: 0; + font-size: 1.2em; +} + +h3 { + margin: 0; + font-size: 1em; +} \ No newline at end of file