Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ignite
GitHub Repository: ignite/cli
Path: blob/main/docs/src/css/fonts.css
1007 views
1
/*
2
3
FONT FAMILY GROUPS
4
5
*/
6
7
8
9
/* Inter */
10
@font-face {
11
font-family: 'Inter';
12
font-style: normal;
13
font-weight: 400;
14
font-display: swap;
15
src: url("~/static/fonts/inter/Inter-Regular.woff2?v=3.19") format("woff2"),
16
url("~/static/fonts/inter/Inter-Regular.woff?v=3.19") format("woff");
17
}
18
19
@font-face {
20
font-family: 'Inter';
21
font-style: normal;
22
font-weight: 500;
23
font-display: swap;
24
src: url("~/static/fonts/inter/Inter-Medium.woff2?v=3.19") format("woff2"),
25
url("~/static/fonts/inter/Inter-Medium.woff?v=3.19") format("woff");
26
}
27
28
@font-face {
29
font-family: 'Inter';
30
font-style: normal;
31
font-weight: 700;
32
font-display: swap;
33
src: url("~/static/fonts/inter/Inter-Bold.woff2?v=3.19") format("woff2"),
34
url("~/static/fonts/inter/Inter-Bold.woff?v=3.19") format("woff");
35
}
36
37
@font-face {
38
font-family: 'Inter';
39
font-style: normal;
40
font-weight: 900;
41
font-display: swap;
42
src: url("~/static/fonts/inter/Inter-Black.woff2?v=3.19") format("woff2"),
43
url("~/static/fonts/inter/Inter-Black.woff?v=3.19") format("woff");
44
}
45
46
47
/* Inter var */
48
@font-face {
49
font-family: 'Inter var';
50
font-weight: 100 900;
51
font-display: swap;
52
font-style: oblique 0deg 10deg;
53
src: url("~/static/fonts/intervar/Inter.var.woff2?v=3.19") format("woff2");
54
}
55
56
/* Termina */
57
@font-face {
58
font-family: 'Termina';
59
src: url("~/static/fonts/termina/termina-demi-web.woff2") format("woff2"), /* chrome、firefox */
60
url("~/static/fonts/termina/termina-demi-web.woff") format("woff"), /* chrome、firefox */
61
url("~/static/fonts/termina/termina-demi-web.ttf") format("truetype"); /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/ font-weight: 600;
62
font-style: normal;
63
font-stretch: normal;
64
}
65
66
/* JetBrains Mono */
67
@font-face{
68
font-family: 'JetBrains Mono';
69
font-weight: normal;
70
font-style: normal;
71
src: url("~/static/fonts/jetbrainsmono/JetBrainsMono-Regular.woff2") format("woff2");
72
}
73
74