diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-10-23 15:43:47 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-10-23 15:43:47 +0200 |
commit | 09c1810f71fed44b49dd6d0ee92faf6128656b03 (patch) | |
tree | 243b81d4e27834d60b1648098d8959087bbe616b /core/css/apps.scss | |
parent | 9b092fd4bde43b3e01a3a53d0b0c02b08cd22712 (diff) | |
download | nextcloud-server-09c1810f71fed44b49dd6d0ee92faf6128656b03.tar.gz nextcloud-server-09c1810f71fed44b49dd6d0ee92faf6128656b03.zip |
Headings standard
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/css/apps.scss')
-rw-r--r-- | core/css/apps.scss | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index dc05d2b3fbb..954b08a114d 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -17,22 +17,33 @@ */ /* BASE STYLING ------------------------------------------------------------ */ - -h2, -h3, -h4 { +h1, +h2 { font-weight: bold; } +h1 { + font-size: 26px; + margin-bottom: 12px; + line-height: 40px; + color: var(--color-text-lighter); +} + h2 { font-size: 20px; margin-bottom: 12px; - line-height: 140%; + line-height: 30px; + color: var(--color-text-light); } h3 { - font-size: 15px; + font-size: 16px; margin: 12px 0; + color: var(--color-text-light); +} + +h4 { + font-size: 14px; } /* do not use italic typeface style, instead lighter color */ |