mirror of https://github.com/lxndrblz/anatole.git

Alexander Bilz
21.02.2021 b0a515f343fd03e575c8de48dc7e14823d344c17
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
.post {
    background-color: $bg-color;
    margin: 30px;
}
 
.post .post-title h1 {
    text-transform: uppercase;
    font-size: 30px;
    letter-spacing: 5px;
    line-height: 1;
}
 
.post .post-title h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    color: $heading-color;
}
 
.post .post-title h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    font-weight: 600;
    /* color: #464646; */
    color: $heading-color;
    font-size: 22px;
    margin: 0;
}
 
.post .post-title a {
    text-decoration: none;
    letter-spacing: 1px;
    color: $heading-color;
}
 
.post .post-title a:hover {
    text-decoration: underline;
}
 
.post .post-content a {
    text-decoration: none;
    letter-spacing: 1px;
    color: #2660ab;
}
 
.post .post-content a:hover {
    color: #2F69B3;
}
 
.post .post-content h3 {
    font-size: 22px;
    font-weight: 600;
}
 
.post .post-content h4 {
    /* color: $heading-color; */
    font-size: 16px;
}
 
.post .post-content img {
    max-width: 100%;
}
 
.post .post-footer {
    padding: 0 0 10px 0;
    border-bottom: 1px solid $border-color;
}
 
.post .post-footer .meta {
    max-width: 100%;
    display: flex;
    color: #bbbbbb;
}
 
.post .post-footer .meta .info {
    float: left;
    font-size: 12px;
    margin-bottom: 1em;
    color: $body-color;
}
 
.post .post-footer .info .separator a {
    margin-right: 0.2em;
}
 
.post .post-footer .meta .info .date {
    margin-right: 10px;
    margin-left: 5px
}
 
.info {
    margin: 1em;
}
 
.info span {
    margin-right: 0.5em;
}
 
.post .post-footer .meta a {
    text-decoration: none;
    color: $body-color;
}
 
.post .post-footer .meta a:hover {
    color: #2660ab;
}
 
.post .post-footer .meta i {
    margin-right: 6px;
}
 
.post .post-footer .tags {
    padding-bottom: 15px;
    font-size: 13px;
}
 
.post .post-footer .tags ul {
    list-style-type: none;
    display: inline;
    margin: 0;
    padding: 0;
}
 
.post .post-footer .tags ul li {
    list-style-type: none;
    margin: 0;
    padding-right: 5px;
    display: inline;
}
 
.post .post-footer .tags a {
    text-decoration: none;
    color: $post-color;
    font-weight: 400;
}
 
.post .post-footer .tags a:hover {
    text-decoration: none;
}
 
.post .post-thumbnail {
    width: 100%;
    padding-bottom: 1em;
    box-shadow: black;
    border-radius: 0.5em;
    overflow: hidden;
    transition: box-shadow .3s ease;
    
}
 
.post .post-thumbnail img {
    width: 100%;
    height: $thumbnail-height;
    object-fit: cover;
    border: 1px solid $border-color;
    border-bottom: 0px;
}