_content.scss
1.46 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/**
* Content
*/
.sticky {
.entry-title {
&:before {
font-family: "FontAwesome";
font-weight: 400;
margin-right: .53em;
content: "\f08d";
}
}
}
.hentry {
margin: 0 0 4.236em;
padding-bottom: 3.631em;
border-bottom: 6px solid rgba(0,0,0,0.05);
.wp-post-image {
margin-bottom: 1.618em;
margin-left: auto;
margin-right: auto;
}
.entry-header {
border-bottom: 3px solid $color_body;
margin-bottom: 3.631em;
h1 {
border-bottom: 1px solid $color_border;
padding-bottom: .618em;
margin-bottom: 3px;
}
.posted-on,
.byline {
font-size: .857em;
}
}
.entry-meta {
a {
border-bottom: 1px solid $color_border;
&:hover {
border-bottom-color: rgba(0,0,0,0.2);
}
}
}
}
.byline,
.updated:not(.published) {
display: none;
}
.single, .group-blog {
.byline {
display: inline;
}
}
.page-links {
clear: both;
margin: 0 0 $vspacing;
}
.cat-links,
.tags-links,
.comments-link,
.edit-link {
display: block;
margin-bottom: 1em;
&:before {
content: "\f114";
font-family: "FontAwesome";
margin-right: .53em;
display: inline-block;
width: 1em;
}
}
.tags-links {
&:before {
content: "\f02b";
}
}
.comments-link {
&:before {
content: "\f0e5";
}
}
.edit-link {
&:before {
content: "\f040";
}
}
@include susy-media($desktop) {
.hentry.type-post {
@include clearfix;
.entry-meta {
@include span(2 of 9);
font-size: .857em;
}
.entry-content {
@include span(last 7 of 9);
}
}
}