-
Notifications
You must be signed in to change notification settings - Fork 0
/
_global.scss
77 lines (67 loc) · 1001 Bytes
/
_global.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Global styling for this template
body {
font-size: 20px;
color: $gray-900;
@include serif-font;
}
p {
line-height: 1.5;
margin: 30px 0;
a {
text-decoration: underline;
}
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 800;
@include sans-serif-font;
}
a {
color: $gray-900;
@include transition-all;
&:focus,
&:hover {
color: $primary;
}
}
blockquote {
font-style: italic;
color: $gray-600;
}
.section-heading {
font-size: 36px;
font-weight: 700;
margin-top: 60px;
}
.caption {
font-size: 14px;
font-style: italic;
display: block;
margin: 0;
padding: 10px;
text-align: center;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}
::-moz-selection {
color: $white;
background: $primary;
text-shadow: none;
}
::selection {
color: $white;
background: $primary;
text-shadow: none;
}
img::selection {
color: $white;
background: transparent;
}
img::-moz-selection {
color: $white;
background: transparent;
}