BigW Consortium Gitlab

fonts.scss 1.34 KB
Newer Older
1 2 3 4
// Disabling "SpaceAfterPropertyColon" linter because the linter doesn't like
// the way the `src` property is formatted in this file.
// scss-lint:disable SpaceAfterPropertyColon

5 6 7 8 9
/* latin-ext */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
10 11 12 13 14
  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');
15 16 17 18 19
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
20 21 22 23 24
  src:
    local('Source Sans Pro'),
    local('SourceSansPro-Regular'),
    font-url('SourceSansPro-Regular.ttf.woff2') format('woff2'),
    font-url('SourceSansPro-Regular.ttf.woff') format('woff');
25 26 27 28 29
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
30 31 32 33 34
  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');
35 36 37 38 39
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
40 41 42 43 44
  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');
45
}