mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
a89483ee5b
Summary: Ref T8099, Moving to Roboto Slab for Document Headers. It's a little less serif-y and fits well with Lato. Also took a pass at cleaning up edge cases in Documents, Diviner, Phriction, Legalpad, and Welcome Screen. Test Plan: Test Phriction, Diviner, Legalpad, Welcome Screen Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8099 Differential Revision: https://secure.phabricator.com/D13439
14 lines
334 B
CSS
14 lines
334 B
CSS
/**
|
|
* @provides font-roboto-slab
|
|
* @requires phui-fontkit-css
|
|
*/
|
|
|
|
@font-face {
|
|
font-family: 'Roboto Slab';
|
|
font-style: normal;
|
|
src: local('RobotoSlab'),
|
|
url(/rsrc/externals/font/robotoslab/RobotoSlab.woff2)
|
|
format('woff2'),
|
|
url(/rsrc/externals/font/robotoslab/RobotoSlab.woff)
|
|
format('woff');
|
|
}
|