-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfonts.css
99 lines (98 loc) · 3.14 KB
/
fonts.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
/* 영문 웹폰트 */
/* latin */
@font-face {
font-family: 'Rway';
font-style: normal;
font-weight: 100;
src: url(Raleway-ExtraLight.ttf) format('truetype');
}
/* latin */
@font-face {
font-family: 'Rway';
font-style: normal;
font-weight: 300;
src: url(Raleway-Light.ttf) format('truetype');
}
/* latin */
@font-face {
font-family: 'Rway';
font-style: normal;
font-weight: 400;
src: url(Raleway-Medium.ttf) format('truetype');
}
/* latin */
@font-face {
font-family: 'Rway';
font-style: normal;
font-weight: 500;
src: url(Raleway-SemiBold.ttf) format('truetype');
}
/* latin */
@font-face {
font-family: 'Rway';
font-style: normal;
font-weight: 700;
src: url(Raleway-Bold.ttf) format('truetype');
}
/* latin */
@font-face {
font-family: 'Rway';
font-style: normal;
font-weight: 900;
src: url(Raleway-Black.ttf) format('truetype');
}
/* 한글 웹폰트 */
/* Noto Sans KR (korean) http://www.google.com/fonts/earlyaccess */
@font-face {
font-family: 'NSKR';
font-style: normal;
font-weight: 100;
src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.woff2) format('woff2'),
url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.woff) format('woff'),
url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Thin.otf) format('opentype');
}
@font-face {
font-family: 'NSKR';
font-style: normal;
font-weight: 300;
src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.woff2) format('woff2'),
url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.woff) format('woff'),
url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Light.otf) format('opentype');
}
@font-face {
font-family: 'NSKR';
font-style: normal;
font-weight: 400;
src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff2) format('woff2'),
url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.woff) format('woff'),
url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Regular.otf) format('opentype');
}
@font-face {
font-family: 'NSKR';
font-style: normal;
font-weight: 500;
src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff2) format('woff2'),
url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.woff) format('woff'),
url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Medium.otf) format('opentype');
}
@font-face {
font-family: 'NSKR';
font-style: normal;
font-weight: 700;
src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff2) format('woff2'),
url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.woff) format('woff'),
url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Bold.otf) format('opentype');
}
@font-face {
font-family: 'NSKR';
font-style: normal;
font-weight: 900;
src: url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.woff2) format('woff2'),
url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.woff) format('woff'),
url(//fonts.gstatic.com/ea/notosanskr/v2/NotoSansKR-Black.otf) format('opentype');
}
html {
font-family: 'Rway', 'RwayEXT', 'NSKR';
font-feature-settings:"lnum" 1, "kern" 1;
font-variant-ligatures: common-ligatures;
}