-
Notifications
You must be signed in to change notification settings - Fork 29
/
style.css
99 lines (82 loc) · 1.35 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
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
body {
min-width: 1110px;
color: #141414;
background-color: #FAFAFA;
}
#main {
float: left;
padding: 20px;
margin: 10px;
width: 700px;
}
#sidebar {
float: left;
position: relative;
padding: 25px;
width: 300px;
}
#sidebar ol {
padding: 0;
}
#sidebar li {
border-bottom: thin solid rgba(55, 42, 26, 1);
margin: 20px 0px;
line-height: 1.05;
list-style-type: none;
}
#sidebar li a {
text-decoration: none;
}
h1,h2,h3,h4,#sidebar a {
font-family: "cantarellregular", "Lucida Sans Unicode","Lucida Sans","Geneva","Verdana","sans-serif";
}
h1 {
font-size: 1.6em;
}
div.post-content > h1 {
font-size: 1.4em;
}
h2 {
font-size: 1.1em;
}
h3 {
font-size: 1em;
}
h4 {
font-size: .8em;
}
body {
font-family: "sina_novaregular", "Georgia","Cambria","Times New Roman","Times","serif";
font-size: 1.3em;
}
img.logo {
display: block;
width: 120px;
margin-left: auto;
margin-right: auto;
}
#edit-post-link {
position: absolute;
top: 2em;
right: 0;
border: 0;
-webkit-transform: rotate(45deg);
-o-transform:rotate(45deg);
-moz-transform:rotate(45deg);
-ms-transform:rotate(45deg);
}
#edit-post-link a {
text-decoration: none;
color: gray;
}
blockquote {
background-color: #ECECEC;
padding: 5px 30px;
border-radius: 5px;
margin: 10px 20px;
}
code, pre {
font-family: "Monaco","Courier","monospace";
font-size: .8em;
background-color: #ECECEC;
}