blob: eda570ac7fc137fec167718ef203d865bacec0f9 (
plain)
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
|
/* M+ outline fonts */
/* mplus-1p - http://mplus-fonts.sourceforge.jp/mplus-outline-fonts/index-en.html */
@font-face {
font-family: mplus1p;
src: url(mplus-1p-thin.ttf);
font-weight: 100;
}
@font-face {
font-family: mplus1p;
src: url(mplus-1p-light.ttf);
font-weight: 200;
}
@font-face {
font-family: mplus1p;
src: url(mplus-1p-regular.ttf);
font-weight: normal;
}
@font-face {
font-family: mplus1p;
src: url(mplus-1p-medium.ttf);
font-weight: 500;
}
@font-face {
font-family: mplus1p;
src: url(mplus-1p-bold.ttf);
font-weight: bold;
}
@font-face {
font-family: mplus1p;
src: url(mplus-1p-heavy.ttf);
font-weight: 800;
}
@font-face {
font-family: mplus1p;
src: url(mplus-1p-black.ttf);
font-weight: 900;
}
|