forked from textmodes/bedstead
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Teletext50-faces.css
49 lines (40 loc) · 1.09 KB
/
Teletext50-faces.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
/*
* This file defines @font-face rules to make the various standard
* Teletext50 fonts available in CSS.
*/
/* Default Width */
@font-face {
font-family: Teletext50;
font-stretch: normal;
src: url(Teletext50.otf) format("opentype");
}
/* Half Default Width (for double height text) */
@font-face {
font-family: Teletext50;
font-stretch: ultra-condensed;
src: url(Teletext50-ultracondensed.otf) format("opentype");
}
/* Square Pixels (widest) */
@font-face {
font-family: Teletext50;
font-stretch: expanded;
src: url(Teletext50-extended.otf) format("opentype");
}
/* Hald-Width Square Pixels (for double height) */
@font-face {
font-family: Teletext50;
font-stretch: extra-condensed;
src: url(Teletext50-extracondensed.otf) format("opentype");
}
/* More Condensed */
@font-face {
font-family: Teletext50;
font-stretch: semi-condensed;
src: url(Teletext50-semicondensed.otf) format("opentype");
}
/* Most Condensed */
@font-face {
font-family: Teletext50;
font-stretch: condensed;
src: url(Teletext50-condensed.otf) format("opentype");
}