-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.css
43 lines (43 loc) · 830 Bytes
/
archive.css
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
article.archive {
padding: 0;
margin: 2em auto;
}
.archive-post {
text-align: left;
margin: 2em auto;
}
.archive-post .archive-title {
font-size: 2.8em;
line-height: 1;
position: relative;
color: #212121;
margin: 0;
}
.archive-post .archive-title a {
color: #000;
}
.archive-post .archive-title a span {
padding-bottom: 3px;
-webkit-transition: box-shadow 0.15s;
transition: box-shadow 0.15s;
box-shadow: inset 0 -2px 0 rgba(240,56,56,0);
}
.archive-post .archive-title a:hover {
color: #212121;
}
.archive-post .archive-title a:hover span {
box-shadow: inset 0 -2px 0 rgba(240,56,56,0.4);
}
.archive-post time {
font-style: italic;
}
.archive-post time a {
font-size: 1.6rem;
color: #9e9e9e;
}
.archive-post time a:before {
content: '#';
}
.archive-post time a:hover {
color: #f03838;
}