-
Notifications
You must be signed in to change notification settings - Fork 1
/
blog.scss
88 lines (72 loc) · 1.46 KB
/
blog.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
78
79
80
81
82
83
84
85
86
87
88
.container-section.post-overview {
padding-top: 0;
}
.post-list {
list-style: none;
padding: 16px 12px 0;
.post-meta {
font-size: 12px;
line-height: 24px;
margin-bottom: 9px;
}
&-title {
font-weight: 700;
font-size: 20px;
line-height: 32px;
color: $text-color;
margin-bottom: 14px;
}
&-excerpt {
font-size: 14px;
line-height: 24px;
margin-bottom: 15px;
}
.post-link {
font-weight: 700;
}
&-seperator {
height: 1px;
width: 100%;
background: #E3E3E3;
border-radius: 2px;
margin: 42px 0 39px;
}
li:last-of-type {
.post-list-seperator {
display: none;
}
}
}
.container-section.post-section {
padding-top: 16px;
}
.post {
h1 {
font-weight: 700;
font-size: 36px;
line-height: 42px;
margin-bottom: 15px;
@include media-breakpoint-up(md) {
font-size: 48px;
line-height: 56px;
}
}
&-meta {
font-size: 12px;
}
&-img {
width: 100%;
&-center {
display: block;
margin: 40px auto;
width: 100%;
max-width: 400px;
}
&-label {
font-size: 16px;
line-height: 32px;
color: #6F6F6E;
text-align: right;
}
}
}