-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (66 loc) · 1.13 KB
/
style.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
body {
background-color: #f2f2f2;
font-size: 1.25rem;
line-height: 1.5;
font-family: "Alimama";
}
.container {
max-width: 960px;
margin: 0 auto;
}
@font-face {
font-family: 'Alimama';
src: url("../font/AlimamaFangYuanTiVF-Thin.ttf");
}
.header {
display: flex;
height: 60px;
align-items: baseline;
justify-content: space-between;
background-color: #222;
}
.header .blog-title .logo {
color: #aaa;
font-size: 20px;
margin-left: 20px;
text-decoration: none;
}
.header .menu {
margin: 0;
padding: 0;
}
.header .menu .menu-item {
display: inline-block;
margin-right: 10px;
}
.header .menu .menu-item-link {
color: #aaa;
text-decoration: none;
}
.header .menu .menu-item-link:hover {
color: #368ccb;
}
.post {
margin: 1em auto;
padding: 30px 50px;
background-color: #fff;
border: 1px solid #ddd;
box-shadow: 0 0 2px #ddd;
}
.posts .post:first-child {
margin-top: 0;
}
.posts .post-title {
font-size: 1.5em;
}
.posts .post-title .post-title-link {
color: #368ccb;
text-decoration: none;
}
.posts .post-content a {
color: #368ccb;
text-decoration: none;
}
.posts .post-meta {
color: #bababa;
}