diff options
author | Marin Treselj <pixelipo@users.noreply.github.com> | 2018-10-03 10:09:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-03 10:09:57 +0200 |
commit | a92e8b4c18097705ededfb4bdde21088109275b8 (patch) | |
tree | e8d8ecefd4e5d2e79855f697b937616aee1f21e6 /core/css/guest.css | |
parent | 6979b2ea0c93a52059848c8bb8d562f7b670bc57 (diff) | |
parent | 26e952f3f245b44da6e15f21979b3b1243727651 (diff) | |
download | nextcloud-server-a92e8b4c18097705ededfb4bdde21088109275b8.tar.gz nextcloud-server-a92e8b4c18097705ededfb4bdde21088109275b8.zip |
Merge pull request #11538 from nextcloud/heading-bold
Set headings to Semibold for better information architecture
Diffstat (limited to 'core/css/guest.css')
-rw-r--r-- | core/css/guest.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index 4645e97910f..47ceb7b93e0 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -53,15 +53,19 @@ em { } /* heading styles */ +h2, +h3, +h4 { + font-weight: 600; +} + h2 { font-size: 20px; - font-weight: 300; margin-bottom: 12px; line-height: 140%; } h3 { font-size: 15px; - font-weight: 300; margin: 12px 0; } |