-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfonts.hss
102 lines (87 loc) · 3.42 KB
/
fonts.hss
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
/*=====================================================================*/
/* serrano/diffusion/talk/ecoop22/fonts.hss */
/* ------------------------------------------------------------- */
/* Author : Manuel Serrano */
/* Creation : Wed Oct 14 14:41:22 2015 */
/* Last change : Mon May 23 12:40:44 2022 (serrano) */
/* Copyright : 2015-22 Manuel Serrano */
/* ------------------------------------------------------------- */
/* Fonts declarations */
/*=====================================================================*/
/*---------------------------------------------------------------------*/
/* url-font ... */
/*---------------------------------------------------------------------*/
$(define-hss-function (url-font local remote)
(format "url( ~a ), url( ~a )" local remote))
/*---------------------------------------------------------------------*/
/* fonts */
/*---------------------------------------------------------------------*/
@font-face {
font-family: Kaffeesatz;
font-style: normal;
font-weight: normal;
src: url-font( "fonts/YanoneKaffeesatz/YanoneKaffeesatz-Regular.otf",
"http://themes.googleusercontent.com/static/fonts/yanonekaffeesatz/v4/YDAoLskQQ5MOAgvHUQCcLbvy90DtE_Pg_qiF9bHvTzw.ttf" );
}
@font-face {
font-family: KaffeesatzBold;
font-style: normal;
font-weight: normal;
src: url-font( "fonts/YanoneKaffeesatz/YanoneKaffeesatz-Bold.otf",
"http://themes.googleusercontent.com/static/fonts/yanonekaffeesatz/v4/We_iSDqttE3etzfdfhuPRUgbSk09ekaEjkXjfj0Ujx8.ttf" );
}
@font-face {
font-family: KaffeesatzLight;
font-style: normal;
font-weight: normal;
src: url-font( "fonts/YanoneKaffeesatz/YanoneKaffeesatz-Light.otf",
"http://themes.googleusercontent.com/static/fonts/yanonekaffeesatz/v4/We_iSDqttE3etzfdfhuPRQqTbvZhoFeVhlHCS0LaBIg.ttf" );
}
@font-face {
font-family: 'SpecialElite';
font-style: normal;
font-weight: 400;
src: url-font( "fonts/Special-Elite.woff",
"http://themes.googleusercontent.com/static/fonts/specialelite/v3/9-wW4zu3WNoD5Fjka35Jm_n8qdNnd5eCmWXua5W-n7c.woff") format('woff');
}
@font-face {
font-family: 'FjallaOne';
font-style: normal;
font-weight: 400;
src: url-font( "fonts/FjallaOne.woff",
"http://themes.googleusercontent.com/static/fonts/fjallaone/v1/rxxXUYj4oZ6Q5oDJFtEd6hsxEYwM7FgeyaSgU71cLG0.woff") format('woff');
}
@font-face {
font-family: 'CourierMono';
font-style: normal;
src: url-font( "fonts/FreeMono.ttf", "FreeMono.ttf" );
}
@font-face {
font-family: 'CourierMonoBold';
font-style: bold;
src: url-font( "fonts/FreeMonoBold.ttf", "FreeMonoBold.ttf" );
}
@font-face {
font-family: 'ParkAvenue';
src: url( "fonts/Parkavenue.ttf" ) , local("Parkavenue") , url( "http://www.free-fonts-ttf.org/true-type-fonts/download.php?image_id=5263" );
}
@font-face {
font-family: 'cmmi';
src: url( "fonts/CM/cmmi10.ttf" );
}
@font-face {
font-family: 'cmr';
src: url( "fonts/CM/cmr10.ttf" );
}
@font-face {
font-family: 'cms';
src: url( "fonts/CM/cms10.ttf" );
}
@font-face {
font-family: 'cmsy';
src: url( "fonts/CM/cmsy8.ttf" );
}
@font-face {
font-family: 'cmtt';
src: url( "fonts/CM/cmtt10.ttf" );
}