-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathblog.css
More file actions
101 lines (87 loc) · 1.28 KB
/
Copy pathblog.css
File metadata and controls
101 lines (87 loc) · 1.28 KB
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
html, body {
font-size: 18px;
line-height: 160%;
color: #222;
margin: 0;
font-family: 'Roboto', 'APPLE SD Gothic NEO', sans-serif;
}
h1,h2,h3,h4,h5,h6,p,ul,ol {
padding: 0 25px;
max-width: 700px;
line-height: 1.6em;
margin-left: auto;
margin-right: auto;
}
h1 {
font-size: 2em;
line-height: 130%;
}
p, ul, ol {
margin: 1.5em auto;
}
code {
font-size: 18px;
line-height: 1.4;
font-family: 'Nanum Gothic Coding', monospace;
}
pre {
background: #222;
color: #fff;
font-size: 18px;
line-height: 150%;
font-family: 'Nanum Gothic Coding', monospace;
overflow-x: auto;
}
.code-multiline {
display: block;
max-width: 700px;
padding: 20px;
margin: auto;
}
pre code {
padding: 0;
}
.sf_code_syntax_comment {
color: #888;
}
.sf_code_syntax_keyword,
.sf_code_syntax_project {
color: #ffad5e;
}
.sf_code_syntax_string,
.sf_code_syntax_character {
color: #84a8ff;
}
a {
color: #84a8ff;
}
header {
padding: 10vw 20px 5vw;
margin-bottom: 5vw;
background: #FFDE03;
}
header h1,
header h2 {
padding: 0;
margin-top:0;
margin-bottom:0;
}
header h1 {
font-size: 3em;
}
header h2 {
margin-top: .5em;
font-size: 1em;
font-weight: 400;
}
@media (max-width: 480px) {
header {
padding: 30vw 20px 10vw;
}
header h1 {
font-size: 1.75em;
}
ol li {
margin: 0 20px 15px;
}
}