mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 09:12:41 +01:00
b3523adff4
Summary: Couple of reasons here. Mainly, we're looking at Serif fonts for Phacility, so having headers tie back seems worth exploring. Also Oswals was a bit heavy, and in trying to find a replacement with similiar distinction, was unable to find anything suitable. Trying out Slabo here and have been pleasantly surprised how well the Serif/Sans-Serif combination works here, typographically. Test Plan: Test Objects, Documents, and Dashboards. {F500207} {F500208} Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13279
15 lines
344 B
CSS
15 lines
344 B
CSS
/**
|
|
* @provides font-slabo
|
|
* @requires phui-fontkit-css
|
|
*/
|
|
|
|
@font-face {
|
|
font-family: 'Slabo';
|
|
font-style: normal;
|
|
src: local('Slabo'),
|
|
local('Slabo-Regular'),
|
|
url(/rsrc/externals/font/slabo/Slabo-Regular.woff2)
|
|
format('woff2'),
|
|
url(/rsrc/externals/font/slabo/Slabo-Regular.woff)
|
|
format('woff');
|
|
}
|