mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 23:32:40 +01:00
958e5c6389
Summary: Builds a complete font package for browsers that support woff2. Ref T7066 Test Plan: Visit a test page locally with addtional languages. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T7066 Differential Revision: https://secure.phabricator.com/D11545
23 lines
709 B
CSS
23 lines
709 B
CSS
/**
|
|
* @provides font-source-sans-pro
|
|
*/
|
|
|
|
@font-face {
|
|
font-family: 'Source Sans Pro';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local('Source Sans Pro'),
|
|
local('SourceSansPro-Regular'),
|
|
url(/rsrc/externals/font/sourcesans/SourceSansPro-Regular.woff2) format('woff2'),
|
|
url(/rsrc/externals/font/sourcesans/SourceSansPro.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'),
|
|
url(/rsrc/externals/font/sourcesans/SourceSansPro-Bold.woff2) format('woff2'),
|
|
url(/rsrc/externals/font/sourcesans/SourceSansProBold.woff) format('woff');
|
|
}
|