mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 01:02:42 +01:00
2ca269cb31
Summary: These fonts are functionally very similar, but in diagnosing a problem with mobile Safari/Chrome, it turned out that our use of "bold" with the "normal" font build created a "semibold" look when on desktop and a "normal" look on mobile. The "semibold" feel is more important, so finding a lighter "bold" font was the impetus for this font switch. As it turns out **Aleo** is built by the same author as **Lato** (our other font) and is intended as it's companion. So stylistically, this is the more correct font. Test Plan: Test Phriction, Legalpad, Diviner, Desktop and Mobile {F938013} Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D14391
33 lines
968 B
CSS
33 lines
968 B
CSS
/**
|
|
* @provides phui-fontkit-css
|
|
*/
|
|
|
|
/* - Roboto Slab ---------------------------------------------------------------
|
|
|
|
Used as Primary Headers in Object Boxes, Headers in Documents
|
|
|
|
*/
|
|
|
|
.diviner-document-section .phui-header-header {
|
|
font-family: 'Aleo', {$fontfamily};
|
|
color: #000;
|
|
}
|
|
|
|
.phui-document-view .phui-header-tall .phui-header-header {
|
|
font-family: 'Aleo', {$fontfamily};
|
|
}
|
|
|
|
.phui-document-view .phabricator-remarkup h1.remarkup-header,
|
|
.phui-document-view .phabricator-remarkup h2.remarkup-header,
|
|
.phui-document-view .phabricator-remarkup h3.remarkup-header,
|
|
.phui-document-view .phabricator-remarkup h4.remarkup-header,
|
|
.phui-document-view .phabricator-remarkup h5.remarkup-header,
|
|
.phui-document-view .phabricator-remarkup h6.remarkup-header {
|
|
font-family: 'Aleo', {$fontfamily};
|
|
}
|
|
|
|
.phui-document-view .phabricator-remarkup h2.remarkup-header {
|
|
padding: 0 24px 8px 0;
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
margin: 32px 0 16px;
|
|
}
|