464d7b9d48d6333f2c74ec4e14503e4a6bed6723
[ghost-theme-willow.git] / source / sass / elements / _elements.scss
1 /*
2 |-------------------------------------------------------------------------------
3 | Base elements / Un-classed elements
4 |-------------------------------------------------------------------------------
5 */
6 // All
7 * {
8 box-sizing: border-box;
9 }
10
11 // Body, Html
12 body, html {
13 height: 100%;
14 }
15
16 // Body
17 body {
18 color: $c-black;
19 font-size: 14px;
20 min-width: 320px;
21 line-height: 1.5;
22 background: $c-background;
23 font-family: 'Merriweather', serif;
24 }
25
26 // Anchors
27 a {
28 outline: none;
29 color: $c-black;
30 @include transition();
31 text-decoration: none;
32
33 &:hover {
34 color: $c-grayDark;
35 }
36 }
37
38 // Headings
39 h1 {
40 margin: 0;
41 font-size: 1.25em;
42 }
43
44 h2 {
45 margin: 0;
46 font-size: 1.1em;
47 }
48
49 h3 {
50 margin: 0;
51 font-size: 1em;
52 }