mirror of
https://github.com/BradNut/awesome-uses
synced 2025-09-08 17:40:31 +00:00
17 lines
565 B
CSS
17 lines
565 B
CSS
|
|
/* Fonts */
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Fira Mono';
|
||
|
|
font-weight: 400;
|
||
|
|
font-style: normal;
|
||
|
|
src: url('../src/fonts/fira_mono-regular-webfont.woff2') format('woff2'),
|
||
|
|
url('../src/fonts/fira_mono-regular-webfont.woff') format('woff');
|
||
|
|
font-display: swap;
|
||
|
|
}
|
||
|
|
@font-face {
|
||
|
|
font-family: 'Fira Mono';
|
||
|
|
font-weight: 400;
|
||
|
|
font-style: italic;
|
||
|
|
src: url('../src/fonts/fira_mono-regular_italic-webfont.woff2') format('woff2'), url('../src/fonts/fira_mono-regular_italic-webfont.woff') format('woff');
|
||
|
|
font-display: swap;
|
||
|
|
}
|