mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
5ef99dba2a
Summary: Numerous visual updates to the Durable Column, mostly to emulate current Conpherence look and feel. Test Plan: Lots of little pixel chasing. Also Chrome, Firefox. Reviewers: epriestley, btrahan Reviewed By: btrahan Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12041
54 lines
1.5 KiB
CSS
54 lines
1.5 KiB
CSS
/**
|
|
* @provides font-source-sans-pro
|
|
* @requires phui-fontkit-css
|
|
*/
|
|
|
|
@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');
|
|
}
|
|
|
|
@font-face{
|
|
font-family: 'Source Sans Pro';
|
|
font-weight: 400;
|
|
font-style: italic;
|
|
font-stretch: normal;
|
|
src: local('Source Sans Pro It'),
|
|
local('SourceSansPro-It'),
|
|
url(/rsrc/externals/font/sourcesans/SourceSansPro-It.woff2)
|
|
format('woff2'),
|
|
url(/rsrc/externals/font/sourcesans/SourceSansPro-It.woff)
|
|
format('woff');
|
|
}
|
|
|
|
@font-face{
|
|
font-family: 'Source Sans Pro';
|
|
font-weight: 700;
|
|
font-style: italic;
|
|
font-stretch: normal;
|
|
src: local('Source Sans Pro Bold It'),
|
|
local('SourceSansPro-BoldIt'),
|
|
url(/rsrc/externals/font/sourcesans/SourceSansPro-BoldIt.woff2)
|
|
format('woff'),
|
|
url(/rsrc/externals/font/sourcesans/SourceSansPro-BoldIt.woff)
|
|
format('woff');
|
|
}
|