1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-21 09:48:47 +02:00
phorge-phorge/webroot/rsrc/css/font/font-source-sans-pro.css
Chad Little 958e5c6389 Add extended woff2 files in Source Sans Pro
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
2015-01-28 13:18:37 -08:00

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');
}