-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.css
112 lines (93 loc) · 2.87 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
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans',
'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
}
#root {
display: flex;
justify-content: center;
align-items: center;
}
@font-face {
font-family: 'Pretendard-Black';
font-display: fallback;
/*
src: 사용할 폰트의 위치 및 형식
Safari, Android, iOS => ttf
Modern Browsers => woff
*/
src: url('./font/Pretendard-Black.otf') format('opentype'), url('./font/Pretendard-Black.woff') format('woff');
/*사용할 폰트 기본 스타일 */
font-weight: 900;
font-style: normal;
}
@font-face {
font-family: 'Pretendard-Bold';
font-display: fallback;
/*
src: 사용할 폰트의 위치 및 형식
Safari, Android, iOS => ttf
Modern Browsers => woff
IE6-IE8 => eot
*/
src: url('./font/Pretendard-Bold.otf') format('opentype'), url('./font/Pretendard-Bold.woff') format('woff'),
url('./font/Pretendard-Bold.eot?iefix') format('embedded-opentype');
/*사용할 폰트 기본 스타일 */
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Pretendard-Regular';
font-display: fallback;
/*
src: 사용할 폰트의 위치 및 형식
Safari, Android, iOS => ttf
Modern Browsers => woff
IE6-IE8 => eot
*/
src: url('./font/Pretendard-Regular.otf') format('opentype'), url('./font/Pretendard-Regular.woff') format('woff'),
url('./font/Pretendard-Regular.eot?iefix') format('embedded-opentype');
/*사용할 폰트 기본 스타일 */
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Pretendard-ExtraBold';
font-display: fallback;
/*
src: 사용할 폰트의 위치 및 형식
Safari, Android, iOS => ttf
Modern Browsers => woff
IE6-IE8 => eot
*/
src: url('./font/Pretendard-ExtraBold.otf') format('opentype'), url('./font/Pretendard-ExtraBold.woff') format('woff'),
url('./font/Pretendard-ExtraBold.eot?iefix') format('embedded-opentype');
/*사용할 폰트 기본 스타일 */
font-weight: 800;
font-style: normal;
}
@font-face {
font-family: 'Pretendard-Medium';
font-display: fallback;
/*
src: 사용할 폰트의 위치 및 형식
Safari, Android, iOS => ttf
Modern Browsers => woff
IE6-IE8 => eot
*/
src: url('./font/Pretendard-Medium.otf') format('opentype'), url('./font/Pretendard-Medium.woff') format('woff'),
url('./font/Pretendard-Medium.eot?iefix') format('embedded-opentype');
/*사용할 폰트 기본 스타일 */
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'GmarketSansMedium';
font-display: fallback;
src: url('./font/GmarketSansMedium.otf') format('opentype');
}