edac38c439
With this, builds will now fail if they break the SCSS style guide (at least, the parts enabled by the linter). Discussed in #14299.
45 lines
1.3 KiB
SCSS
45 lines
1.3 KiB
SCSS
// Disabling "SpaceAfterPropertyColon" linter because the linter doesn't like
|
|
// the way the `src` property is formatted in this file.
|
|
// scss-lint:disable SpaceAfterPropertyColon
|
|
|
|
/* latin-ext */
|
|
@font-face {
|
|
font-family: 'Source Sans Pro';
|
|
font-style: normal;
|
|
font-weight: 300;
|
|
src:
|
|
local('Source Sans Pro Light'),
|
|
local('SourceSansPro-Light'),
|
|
font-url('SourceSansPro-Light.ttf.woff2') format('woff2'),
|
|
font-url('SourceSansPro-Light.ttf.woff') format('woff');
|
|
}
|
|
@font-face {
|
|
font-family: 'Source Sans Pro';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src:
|
|
local('Source Sans Pro'),
|
|
local('SourceSansPro-Regular'),
|
|
font-url('SourceSansPro-Regular.ttf.woff2') format('woff2'),
|
|
font-url('SourceSansPro-Regular.ttf.woff') format('woff');
|
|
}
|
|
@font-face {
|
|
font-family: 'Source Sans Pro';
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
src:
|
|
local('Source Sans Pro Semibold'),
|
|
local('SourceSansPro-Semibold'),
|
|
font-url('SourceSansPro-Semibold.ttf.woff2') format('woff2'),
|
|
font-url('SourceSansPro-Semibold.ttf.woff') format('woff');
|
|
}
|
|
@font-face {
|
|
font-family: 'Source Sans Pro';
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
src:
|
|
local('Source Sans Pro Bold'),
|
|
local('SourceSansPro-Bold'),
|
|
font-url('SourceSansPro-Bold.ttf.woff2') format('woff2'),
|
|
font-url('SourceSansPro-Bold.ttf.woff') format('woff');
|
|
}
|