1
0
mirror of synced 2025-12-25 11:03:37 -05:00
Files
docs/stylesheets/font-mktg.scss
Kevin Heis a7623cdb62 Reorganize SCSS without changing any of the properties or values (#18963)
* Reorganize SCSS without changing any of the properties or values

* Mis-moved a few files

* Split up "other"
2021-04-26 16:18:25 +00:00

50 lines
1.5 KiB
SCSS

// stylelint-disable primer/no-unused-vars
// Typography
$marketing-font-path: "/assets/fonts/alliance/";
$font-family-mktg: "Alliance No.1", -apple-system, BlinkMacSystemFont,
"Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol" !default;
$font-weight-extrabold: 800 !default;
.font-mktg {
font-family: $font-family-mktg;
}
// Type
@font-face {
font-family: "Alliance No.1";
font-style: normal;
font-weight: $font-weight-normal;
src: local("Alliance No.1 Regular"), local("alliance-no-1-regular"),
url("#{$marketing-font-path}alliance-no-1-regular.woff") format("woff");
font-display: swap;
}
@font-face {
font-family: "Alliance No.1";
font-style: normal;
font-weight: $font-weight-semibold;
src: local("Alliance No.1 Medium"), local("alliance-no-1-medium"),
url("#{$marketing-font-path}alliance-no-1-medium.woff") format("woff");
font-display: swap;
}
@font-face {
font-family: "Alliance No.1";
font-style: normal;
font-weight: $font-weight-bold;
src: local("Alliance No.1 Bold"), local("alliance-no-1-bold"),
url("#{$marketing-font-path}alliance-no-1-bold.woff") format("woff");
font-display: swap;
}
@font-face {
font-family: "Alliance No.1";
font-style: normal;
font-weight: $font-weight-extrabold;
src: local("Alliance No.1 ExtraBold"), local("alliance-no-1-extrabold"),
url("#{$marketing-font-path}alliance-no-1-extrabold.woff") format("woff");
font-display: swap;
}