mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
f83bbeaf5c
Summary: Ref T8099, This feels a little more consistent with the Document. Test Plan: Review Phriction, Legalpad, Diviner Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8099 Differential Revision: https://secure.phabricator.com/D13477
34 lines
1,008 B
CSS
34 lines
1,008 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: 'Roboto Slab', {$fontfamily};
|
|
font-size: 20px;
|
|
color: #000;
|
|
}
|
|
|
|
.phui-document-view .phui-header-tall .phui-header-header {
|
|
font-family: 'Roboto Slab', {$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: 'Roboto Slab', {$fontfamily};
|
|
}
|
|
|
|
.phui-document-view .phabricator-remarkup h2.remarkup-header {
|
|
padding: 0 24px 8px 0;
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
margin: 24px 0 16px;
|
|
}
|