blob: 4bc0bb4709ce991d1f8c02fca279e09208db5374 (
plain)
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
|
@import "_mixins";
.masthead-title small {
font-size: .78rem;
}
.introduction {
min-height: 40px;
margin-bottom: 40px;
@include mq(tabletp) {
min-height: 60px;
margin-bottom: 60px;
}
@include mq(tabletl) {
min-height: 80px;
margin-bottom: 80px;
}
@include mq(laptop) {
min-height: 100px;
margin-bottom: 100px;
}
}
.introduction .container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
.blog-post {
margin-top: 40px;
@include mq(tabletp) {
margin-top: 60px;
}
@include mq(tabletl) {
margin-top: 80px;
}
@include mq(laptop) {
margin-top: 100px;
}
&:first-child {
margin-top: 0;
}
}
.post-meta {
margin-top: 5px;
font-size: .85rem;
color: $text-light-color;
}
.post .byline {
font-style: italic;
font-weight: normal;
letter-spacing: 0;
margin-top: -.5rem;
}
|