forked from opensourcedesign/opensourcedesign.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_post.scss
62 lines (48 loc) · 772 Bytes
/
_post.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
/**
* Posts
*/
.post-header {
margin-bottom: $spacing-unit * 3;
.post-meta {
text-align: center;
}
}
.post-title {
font-size: 42px;
line-height: 1.6;
@include media-query($on-laptop) {
font-size: 36px;
}
}
.post-content {
margin-bottom: $spacing-unit;
font-family: $lora;
h2,
h3,
h4 {
margin-top: $spacing-unit * 2;
margin-bottom: $spacing-unit;
}
h2 {
font-size: 26px;
@include media-query($on-laptop) {
font-size: 26px;
}
}
h3 {
font-size: 22px;
@include media-query($on-laptop) {
font-size: 22px;
}
}
h4 {
font-size: 18px;
@include media-query($on-laptop) {
font-size: 18px;
}
}
img {
margin: $spacing-unit auto;
display: block;
}
}