mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
d961a15d07
Summary: Testing this out, feels much less heavy and more readable for me, but open to other feedback. I've also corrected/normalize the header sizes and heights. Test Plan: Copied some real Phriction documents to my local install, read them all. Checked header sizes and make sure px are used for more absolute control over sizes. {F387327} {F387328} {F387329} Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T7963 Differential Revision: https://secure.phabricator.com/D12587
54 lines
1.6 KiB
CSS
54 lines
1.6 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: 600;
|
|
src: local('Source Sans Pro Semibold'),
|
|
local('SourceSansPro-Semibold'),
|
|
url(/rsrc/externals/font/sourcesans/SourceSansPro-Semibold.woff2)
|
|
format('woff2'),
|
|
url(/rsrc/externals/font/sourcesans/SourceSansPro-Semibold.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 Semibold It'),
|
|
local('SourceSansPro-SemiboldIt'),
|
|
url(/rsrc/externals/font/sourcesans/SourceSansPro-SemiboldIt.woff2)
|
|
format('woff'),
|
|
url(/rsrc/externals/font/sourcesans/SourceSansPro-SemiboldIt.woff)
|
|
format('woff');
|
|
}
|