-
Notifications
You must be signed in to change notification settings - Fork 6
/
style.scss
executable file
·128 lines (102 loc) · 1.52 KB
/
style.scss
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
---
---
@import "reset";
@import "variables";
@import "footer";
@import "index";
@import "post";
@import "playground";
html {
font-size: 100%;
height: 100%;
}
body {
-webkit-font-smoothing: antialiased;
font-variant-ligatures: common-ligatures;
background: $white;
font-family: $mono;
font-size: 16px;
line-height: 1.25em;
color: $darkGray;
min-height: 100%;
display: flex;
flex-direction: column;
}
.container {
margin: 0 auto;
max-width: 740px;
padding: 0 10px;
width: 100%;
}
.hidden {
display: none;
}
h1, h2, h3, h4, h5, h6 {
font-family: $serif;
color: $darkGray;
font-weight: 300;
line-height: 1.15;
padding: 0;
}
h1 {
font-size: 30px;
}
h2 {
font-size: 24px;
}
h3 {
font-size: 22px;
line-height: 1;
}
h4 {
font-size: 18px;
color: $gray;
}
h1 a, h2 a, h3 a,
h4 a, h5 a, h6 a {
color: inherit;
}
p, ul, ol, pre {
margin: 0.2em 0 1.2em 0;
}
ol ol, ul ul,
ul ol, ol ul {
margin: 0.4em 0;
}
a {
color: $blue;
text-decoration: none;
cursor: pointer;
&:hover, &:active {
color: $blue;
}
}
ul, ol {
margin: 15px 0;
padding-left: 30px;
}
ul {
list-style-type: disc;
}
ol {
list-style-type: decimal;
}
ol ul, ul ol, ul ul, ol ol {
margin: 0;
}
ul ul, ol ul {
list-style-type: circle;
}
em, i {
font-style: italic;
}
strong, b {
font-weight: bold;
}
img, video {
max-width: 100%;
}
sup {
font-size: xx-small;
vertical-align: super;
}