From 801e08e73624005ed498101ad616d987f70f8cdf Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Sun, 12 Jul 2026 17:04:26 +0200 Subject: Add original style sources and an SCSS compiler --- assets/_sass/base/_reset.scss | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 assets/_sass/base/_reset.scss (limited to 'assets/_sass/base/_reset.scss') diff --git a/assets/_sass/base/_reset.scss b/assets/_sass/base/_reset.scss new file mode 100644 index 0000000..f896901 --- /dev/null +++ b/assets/_sass/base/_reset.scss @@ -0,0 +1,35 @@ +* { + box-sizing: border-box; + -moz-box-sizing: border-box; +} + +body { + margin: 0; + padding: 0; + font-family: 'PT Serif', serif; + font-size: 18px; + line-height: 30px; + color: var(--grey-555); + background: var(--body-bg); +} + +header, +nav, +section, +main, +article, +aside, +figure, +footer, +iframe, +object, +svg { + display: block; + margin: 0; +} + +@media screen and (max-width: 800px) { + body { + padding: 80px 0 0; + } +} -- cgit v1.2.3