From 6024b0721da63e1ea499c89075c19b177f3cb80f Mon Sep 17 00:00:00 2001 From: Andriy Parashchuk Date: Fri, 21 Feb 2025 14:20:50 +0200 Subject: [PATCH] #219: Add styles for with rendering table --- themes/beaver/assets/css/style.css | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/themes/beaver/assets/css/style.css b/themes/beaver/assets/css/style.css index 67bc1d5ce..d8bd8bccf 100644 --- a/themes/beaver/assets/css/style.css +++ b/themes/beaver/assets/css/style.css @@ -27,8 +27,8 @@ .blog h1, .blog .heading { - font-size: 72px; - line-height: 92px; + font-size: 48px; + line-height: 60px; font-weight: 700; margin: 0 0 32px !important; @@ -114,8 +114,22 @@ text-decoration: none; } +.blog table { + margin: 22px 0; +} +.blog th, +.blog td { + border: 1px solid #e9eaeb; + padding: 5px 10px; + font-size: 16px; +} input[type=submit]:disabled { opacity: 0.25 } + +.blog ol, +.blog ul { + padding-left: 24px; +}