From abe10854a8ae6992c839accc8ec92aa448ee807f Mon Sep 17 00:00:00 2001 From: Viviana Menzel Date: Tue, 17 Nov 2020 20:34:43 +0100 Subject: [PATCH] Improvement on font-family and font-size for editor.css --- templates/system/css/editor.css | 35 +++++++++++---------------------- 1 file changed, 12 insertions(+), 23 deletions(-) diff --git a/templates/system/css/editor.css b/templates/system/css/editor.css index c4ce3f4421..f9ea1e8ff7 100644 --- a/templates/system/css/editor.css +++ b/templates/system/css/editor.css @@ -5,47 +5,36 @@ body { background: #fff; - font-family: Tahoma, Helvetica, Arial, sans-serif; + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; line-height: 1.3em; - font-size: 12px; - color: #333; + font-size: 1rem; + color: #22262a; } -h1 { - font-family: Arial, Helvetica, sans-serif; - font-size: 16px; +h1, h2, h3, h4 { font-weight: bold; - color: #666; } -h2 { - font-family: Arial, Helvetica, sans-serif; - font-size: 14px; - font-weight: normal; - color: #333; +h1 { + font-size: 1.857rem; } -h3 { - font-weight: bold; - font-family: Arial, Helvetica, sans-serif; - font-size: 13px; - color: #135cae; +h2 { + font-size: 1.571rem; } -h4 { - font-weight: bold; - font-family: Arial, Helvetica, sans-serif; - color: #333; +h3 { + font-size: 1.286rem; } a:link, a:visited { - color: #1B57B1; + color: #1B57B1; text-decoration: none; font-weight: normal; } a:hover { - color: #00c; + color: #00c; text-decoration: underline; font-weight: normal; }