1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00
phorge-phorge/webroot/rsrc/css/font/font-source-sans-pro.css
Chad Little d961a15d07 Swap Source Sans Bold for Semibold
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
2015-04-28 07:19:16 -07:00

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