-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfont.css
110 lines (87 loc) · 1.48 KB
/
font.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
@import url("https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/variable/pretendardvariable.min.css");
* {
padding: 0;
margin: 0;
font-family: "Pretendard";
font-size: 16px;
color: #eeeeee;
white-space: normal;
font-variant-ligatures: none;
}
main * {
line-height: 170%;
font-size: 18px;
word-break: keep-all;
}
p * {
font-family: inherit;
font-size: inherit;
color: inherit;
}
b {
font-family: "Pretendard ExtraBold";
}
c {
padding: 1px 7px;
margin: 0 3px 0 0;
background-color: #333333;
border-radius: 5px;
font-family: "JetBrains Mono", ui-monospace;
font-size: 16px;
}
quote c {
background-color: #222222;
}
ol, ul {
display: flex;
flex-direction: column;
padding: 0 0 0 40px;
gap: 5px;
}
p, a, li, p * {
height: min-content;
}
a {
text-decoration-line: none;
}
sub, sup {
padding: 0 3px 0 0;
font-size: 75%;
color: #ffffff;
}
sup {
font-style: italic;
}
sub *, sup * {
font-size: 100%;
}
i {
padding: 0 3px 0 0;
}
.link, .link * {
color: #3993dd;
transition: 0.3s;
text-decoration-line: underline;
}
.link:hover, .link:hover * {
color: #8cc9ff;
}
main li::marker {
margin-right: 10px;
}
main h1 {
margin: 40px 0 20px 0;
font-size: 32px;
}
main h2 {
margin: 40px 0 20px 0;
font-size: 28px;
}
main h3 {
margin: 20px 0 10px 0;
font-size: 24px;
}
main h4 {
margin: 10px 0;
font-size: 20px;
}