mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-28 05:30:29 -04:00
55 lines
2.0 KiB
SCSS
55 lines
2.0 KiB
SCSS
@use "settings";
|
|
|
|
@use "~@fontsource/inter/scss/mixins" as Inter;
|
|
@use "~@fontsource/roboto-mono/scss/mixins" as RobotoMono;
|
|
@use "~@fontsource/comic-neue/scss/mixins" as ComicNeue;
|
|
|
|
/*!
|
|
* Inter typeface - https://rsms.me/inter/
|
|
*
|
|
* Copyright (c) 2016-2020 The Inter Project Authors.
|
|
* Licensed under the SIL Open Font License, Version 1.1.
|
|
*/
|
|
|
|
// Variable
|
|
@include Inter.fontFaceVariable(
|
|
$fontName: "Inter var",
|
|
$type: "full",
|
|
$unicodeMap: settings.$webfont-unicode-latin-only
|
|
);
|
|
|
|
// Legacy
|
|
@include Inter.fontFace($fontName: "Inter", $weight: 400, $unicodeMap: settings.$webfont-unicode-latin-only);
|
|
@include Inter.fontFace($fontName: "Inter", $weight: 500, $unicodeMap: settings.$webfont-unicode-latin-only);
|
|
@include Inter.fontFace($fontName: "Inter", $weight: 700, $unicodeMap: settings.$webfont-unicode-latin-only);
|
|
|
|
/*!
|
|
* Roboto Mono typeface - https://github.com/googlefonts/robotomono
|
|
*
|
|
* Copyright (c) 2015 The Roboto Mono Project Authors.
|
|
* Licensed under the Apache License, Version 2.0.
|
|
*/
|
|
|
|
// Variable
|
|
@include RobotoMono.fontFaceVariable($fontName: "Roboto Mono var", $unicodeMap: settings.$webfont-unicode-latin-only);
|
|
@include RobotoMono.fontFaceVariable(
|
|
$fontName: "Roboto Mono var",
|
|
$style: italic,
|
|
$unicodeMap: settings.$webfont-unicode-latin-only
|
|
);
|
|
|
|
// Legacy
|
|
@include RobotoMono.fontFace($fontName: "Roboto Mono", $weight: 400, $unicodeMap: settings.$webfont-unicode-latin-only);
|
|
@include RobotoMono.fontFace($fontName: "Roboto Mono", $weight: 500, $unicodeMap: settings.$webfont-unicode-latin-only);
|
|
@include RobotoMono.fontFace($fontName: "Roboto Mono", $weight: 700, $unicodeMap: settings.$webfont-unicode-latin-only);
|
|
|
|
/*!
|
|
* Comic Neue typeface - http://comicneue.com/
|
|
*
|
|
* Copyright (c) 2014 The Comic Neue Project Authors.
|
|
* Licensed under the SIL Open Font License, Version 1.1.
|
|
*/
|
|
|
|
@include ComicNeue.fontFace($fontName: "Comic Neue", $weight: 400, $unicodeMap: settings.$webfont-unicode-latin-only);
|
|
@include ComicNeue.fontFace($fontName: "Comic Neue", $weight: 700, $unicodeMap: settings.$webfont-unicode-latin-only);
|