* Reorganize SCSS without changing any of the properties or values * Mis-moved a few files * Split up "other"
50 lines
1.5 KiB
SCSS
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;
|
|
}
|