diff --git a/website/src/_includes/layouts/article.html b/website/src/_includes/layouts/article.html index 91b7ab21d2..c081da58f8 100644 --- a/website/src/_includes/layouts/article.html +++ b/website/src/_includes/layouts/article.html @@ -8,9 +8,10 @@ + - +
-
+
{{ content | safe }}
diff --git a/website/src/css/blog.css b/website/src/css/blog.css index 02565ab3ad..5c0ff2bb5b 100644 --- a/website/src/css/blog.css +++ b/website/src/css/blog.css @@ -1,3 +1,37 @@ -body{ - background-color: yellowgreen; -} \ No newline at end of file +h1{ + font-size: 1.8rem; + font-weight: 600; + letter-spacing: 0.6px; + margin-bottom: 1rem; +} + +h2{ + font-size: 1.5rem; + font-weight: 500; + letter-spacing: 0.6px; + margin-bottom: 1rem; + margin-top: 1.5rem; +} + +h3{ + font-size: 1.3rem; + font-weight: 500; + letter-spacing: 0.6px; + margin-bottom: 1rem; + margin-top: 1rem; +} + +ul li,ol li{ + text-decoration: none; + list-style: none; + font-size: 1.1rem; + line-height: 30px; + letter-spacing: 0.6px; +} +pre{ + overflow: scroll; +} +/* code{ + width: 100%; + height: auto; +} */ \ No newline at end of file