Updated to v5.0.1
[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 font-size: 1rem;
21 min-width: 320px;
22 line-height: 1.5;
23 background: $c-background;
24 font-family: 'Merriweather', serif;
25 }
26
27 // Anchors
28 a {
29 outline: none;
30 color: $c-black;
31 @include transition();
32 text-decoration: none;
33
34 &:hover {
35 color: $c-grayDark;
36 }
37 }
38
39 // Headings
40
41 h1,
42 h2,
43 h3,
44 h4,
45 h5,
46 h6 {
47 font-family: 'Lora', sans-serif;
48 }
49
50 h1 {
51 margin: 0;
52 // font-size: 1.25em;
53 font-size: 2.8rem;
54 }
55
56 h2 {
57 margin: 0;
58 // font-size: 1.1em;
59 font-size: 2.6rem;
60 }
61
62 h3 {
63 margin: 0;
64 // font-size: 1em;
65 font-size: 2.2rem;
66 }