-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
116 lines (100 loc) · 2.2 KB
/
index.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
font-family: "Pretendard";
font-weight: 800;
font-style: normal;
font-display: swap;
src: url("/assets/fonts/Pretendard-ExtraBold.woff2") format("woff2");
}
@font-face {
font-family: "Pretendard";
font-weight: 700;
font-style: normal;
font-display: swap;
src: url("/assets/fonts/Pretendard-Bold.woff2") format("woff2");
}
@font-face {
font-family: "Pretendard";
font-weight: 600;
font-style: normal;
font-display: swap;
src: url("/assets/fonts/Pretendard-SemiBold.woff2") format("woff2");
}
@font-face {
font-family: "Pretendard";
font-weight: 500;
font-style: normal;
font-display: swap;
src: url("/assets/fonts/Pretendard-Medium.woff2") format("woff2");
}
@font-face {
font-family: "Pretendard";
font-weight: 400;
font-style: normal;
font-display: swap;
src: url("/assets/fonts/Pretendard-Regular.woff2") format("woff2");
}
@font-face {
font-family: "Pretendard";
font-weight: 300;
font-style: normal;
font-display: swap;
src: url("/assets/fonts/Pretendard-Light.woff2") format("woff2");
}
@font-face {
font-family: "Pretendard";
font-weight: 200;
font-style: normal;
font-display: swap;
src: url("/assets/fonts/Pretendard-ExtraLight.woff2") format("woff2");
}
@layer base {
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-family: "Pretendard",sans-serif;
}
#root {
display: flex;
flex-direction: column;
min-height: 100vh;
width: 100%;
}
body {
font-family: Pretendard, -apple-system, BlinkMacSystemFont, Bazier Square,
Noto Sans KR, Segoe UI, Apple SD Gothic Neo, Roboto, Helvetica Neue, Arial,
sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol,
Noto Color Emoji;
line-height: 1.5;
margin: 0;
padding: 0;
@apply flex flex-col min-h-screen w-full;
}
html,
body,
#root {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: "Pretendard";
}
#root {
flex: 1;
}
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
.cursor-blink {
animation: blink 0.5s infinite;
}