diff options
author | Kevin Decherf <kevin@kdecherf.com> | 2016-11-20 20:27:10 +0100 |
---|---|---|
committer | Kevin Decherf <kevin@kdecherf.com> | 2016-11-25 13:37:42 +0100 |
commit | 7470a2f36ab9c66176855affa9788e2dca8978e2 (patch) | |
tree | 12726636855a8dbdec94143ebddaf0028e1f54fb /app/Resources/static/themes/material | |
parent | 5b69e03eb43faf3a0f9bbf5ded12447e33510472 (diff) | |
download | wallabag-7470a2f36ab9c66176855affa9788e2dca8978e2.tar.gz wallabag-7470a2f36ab9c66176855affa9788e2dca8978e2.tar.zst wallabag-7470a2f36ab9c66176855affa9788e2dca8978e2.zip |
Material: prevent bold in title, update title font size
Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
Diffstat (limited to 'app/Resources/static/themes/material')
-rwxr-xr-x | app/Resources/static/themes/material/css/main.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app/Resources/static/themes/material/css/main.css b/app/Resources/static/themes/material/css/main.css index 2fcf11bd..ffccb498 100755 --- a/app/Resources/static/themes/material/css/main.css +++ b/app/Resources/static/themes/material/css/main.css | |||
@@ -616,6 +616,39 @@ a.original { | |||
616 | color: #212121; | 616 | color: #212121; |
617 | } | 617 | } |
618 | 618 | ||
619 | #article article h1 strong, | ||
620 | #article article h2 strong, | ||
621 | #article article h3 strong, | ||
622 | #article article h4 strong, | ||
623 | #article article h5 strong, | ||
624 | #article article h6 strong { | ||
625 | font-weight: 500; | ||
626 | } | ||
627 | |||
628 | #article article h6 { | ||
629 | font-size: 1.2rem; | ||
630 | } | ||
631 | |||
632 | #article article h5 { | ||
633 | font-size: 1.6rem; | ||
634 | } | ||
635 | |||
636 | #article article h4 { | ||
637 | font-size: 1.9rem; | ||
638 | } | ||
639 | |||
640 | #article article h3 { | ||
641 | font-size: 2.2rem; | ||
642 | } | ||
643 | |||
644 | #article article h2 { | ||
645 | font-size: 2.5rem; | ||
646 | } | ||
647 | |||
648 | #article article h1 { | ||
649 | font-size: 2.7rem; | ||
650 | } | ||
651 | |||
619 | #article img, | 652 | #article img, |
620 | #article figure { | 653 | #article figure { |
621 | max-width: 100%; | 654 | max-width: 100%; |