/* |------------------------------------------------------------------------------- | Base elements / Un-classed elements |------------------------------------------------------------------------------- */ // All * { box-sizing: border-box; } // Body, Html body, html { height: 100%; } // Body body { color: $c-black; /*font-size: 14px;*/ font-size: 1rem; min-width: 320px; line-height: 1.5; background: $c-background; font-family: 'Merriweather', serif; } // Anchors a { outline: none; color: $c-black; @include transition(); text-decoration: none; &:hover { color: $c-grayDark; } } // Headings h1, h2, h3, h4, h5, h6 { font-family: 'Lora', sans-serif; } h1 { margin: 0; // font-size: 1.25em; font-size: 2.6rem; margin-bottom: 0.5rem; } h2 { margin: 0; // font-size: 1.1em; font-size: 1.8rem; margin-top: 1.5rem; margin-bottom: 0.5rem; } h3 { margin: 0; // font-size: 1em; font-size: 1.4rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }