-
Notifications
You must be signed in to change notification settings - Fork 2
/
global-styles.css
82 lines (70 loc) · 927 Bytes
/
global-styles.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
:root {
--primary: #846de9;
--secondary: #24eaca;
--bg-100: #fdfdff;
--bg-200: #fbfaff;
--bg-300: #eee8fe;
--bg-400: #5333e1;
--text-900: #160b46;
--font-weight-light: 300;
--font-weight-regular: 400;
--font-weight-medium: 500;
--font-weight-bold: 700;
}
* {
font-family: "Spoqa Han Sans Neo", "Noto Sans KR", sans-serif;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
}
a {
text-decoration: none;
color: inherit;
background: none;
border: none;
font: inherit;
margin: 0;
padding: 0;
cursor: pointer;
}
a:visited {
color: inherit;
}
a:hover {
color: inherit;
text-decoration: none;
transition: 200ms;
}
a:active {
color: inherit;
}
a:focus {
outline: none;
}
button:hover {
transition: 200ms;
}
h1,
h2,
h3,
h4,
h5,
h6,
ol,
ul,
li {
margin: 0;
padding: 0;
}
ol,
ul {
list-style-type: none;
}