-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfont.css
33 lines (32 loc) · 876 Bytes
/
font.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
@font-face {
font-family: 'JetBrains Mono';
src: local('JetBrains Mono'),
url('./font/JetBrainsMono-Regular.woff2') format('woff2');
font-display: swap;
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'JetBrains Mono';
src: local('JetBrains Mono'),
url('./font/JetBrainsMono-Italic.woff2') format('woff2');
font-display: swap;
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'JetBrains Mono';
src: local('JetBrains Mono'),
url('./font/JetBrainsMono-Bold.woff2') format('woff2');
font-display: swap;
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'JetBrains Mono';
src: local('JetBrains Mono'),
url('./font/JetBrainsMono-BoldItalic.woff2') format('woff2');
font-display: swap;
font-weight: bold;
font-style: italic;
}