forked from sorrycc/weekly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.css
133 lines (112 loc) · 2.24 KB
/
default.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
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
html {
width: 100%;
}
body {
width: 600px;
margin: 0 auto;
font-family: Optima-Regular, Optima, PingFangSC-light, PingFangTC-light, "PingFang SC", Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
line-height: 1.5;
}
body a {
color: rgb(0, 122, 170);
text-decoration: underline;
font-weight: bold;
}
body > p.first {
color: rgb(60, 112, 198);
margin-top: 40px;
font-weight: bold;
}
p, h1, h2, h3, ul, ol, pre, img {
margin: 10px 0;
}
p.author {
color: #999;
}
h2 {
margin-top: 60px;
font-size: 1.5em;
font-weight: bold;
color: rgb(60, 112, 198);
text-align: center;
}
h2 span {
display: inline-block;
border-bottom: 2px solid rgb(60, 112, 198);
}
h3 {
margin-top: 40px;
font-size: 1.17em;
font-weight: bold;
margin-bottom: 0;
color: rgb(60, 112, 198);
}
ul, ol {
margin-left: 0;
}
li {
margin-left: 0;
}
* {
margin: 0;
padding: 0;
}
img {
max-width: 100%;
}
p > code {
font-family: "Operator Mono", Consolas, Monaco, Menlo, monospace;
word-break: break-all;
overflow-wrap: break-word;
padding: 2px 4px;
border-radius: 4px;
margin-right: 2px;
margin-left: 2px;
color: rgb(30, 107, 184);
background-color: rgba(27, 31, 35, 0.05);
}
.square {
display: none;
margin-top: 60px;
text-align: center;
}
.square img {
width: 40px;
height: 40px;
}
.zaikan {
margin-top: 60px;
margin-bottom: 20px;
text-align: right;
padding-right: 30px;
background: url(https://img.alicdn.com/imgextra/i4/O1CN01oPJL6R1ujwNiY7wMo_!!6000000006074-2-tps-123-70.png) no-repeat right center;
background-size: 30px auto;
font-weight: bold;
}
.zaikan b {
background: #abe0e1;
}
pre {
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.55) 0px 2px 10px;
font-size: 0.8em;
}
pre > span.pre-header {
content: ' ';
display: block;
background: url(https://img.alicdn.com/imgextra/i3/O1CN01m0Yx2Q1KIAC3HGMPO_!!6000000001140-55-tps-450-130.svg) 10px 10px / 40px no-repeat rgb(40, 44, 52);
height: 30px;
width: 100%;
margin-bottom: -7px;
border-radius: 5px;
}
pre > code {
overflow-x: auto;
padding: 16px;
color: #abb2bf;
display: -webkit-box;
font-family: Operator Mono, Consolas, Monaco, Menlo, monospace;
padding-top: 15px;
background: #282c34;
border-radius: 5px;
}