From 5c086bc52fa3a226bcf706b1f420a5d98ea377dd Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Wed, 15 Dec 2021 10:45:58 +0100 Subject: Redo most of the blog in Hugo Missing posts will have to be added later --- assets/theme/main.scss | 199 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 199 insertions(+) create mode 100644 assets/theme/main.scss (limited to 'assets') diff --git a/assets/theme/main.scss b/assets/theme/main.scss new file mode 100644 index 0000000..9cc1d1b --- /dev/null +++ b/assets/theme/main.scss @@ -0,0 +1,199 @@ +// Variables +$bodyBackgroundColor: #fefefe; +$bodyTextColor: #454545; +$linkColor: #07a; +$blockBackgroundColor: #f6f6f6; +$blockBorderColor: #d7d7d7; +$mainWidth: 900px; + +// Actual CSS +html { + background-color: $bodyBackgroundColor; +} + +body { + color: $bodyTextColor; + font-size: 16px; + line-height: 1.4; + text-align: justify; + width: 100%; + margin: 0; +} + +small { + font-size: 0.7em; +} + +li p { + margin: 0; +} + +table { + width: 100%; +} + +a.image-link { + text-decoration: none; +} + +span.footer-link-seperator { + margin: .5rem; + overflow: hidden; +} + +div.container { + max-width: $mainWidth; + margin: 0 auto 0.5em auto; + padding: 1em 2em 0 2em; +} + +span.citneed{ + vertical-align: top; + font-size: 0.7em; + padding-left: 0.3em; +} + +p.text-center { + text-align: center; +} + +article { + footer hr { + width: 50% + } +} + +section.admonition { + background-color: #f6f6f6; + border: 1px solid #d7d7d7; + margin: .5rem auto 1.74rem auto; + width: 85%; + max-width: $mainWidth * .9; + padding: 1.5rem; + + .admonition-title { + display: flex; + align-items: center; + justify-content: center; + font-size: 1.5rem; + text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); + } + + p { + margin: 0; + } +} + +@media(min-width: $mainWidth) { + section.admonition { + display: grid; + + grid-template-columns: [title] .25fr [body] 1fr [end]; + + .admonition-title { + grid-column-start: title; + grid-column-end: body; + } + + p { + grid-column-start: body; + grid-column-end: end; + + padding-left: 10px; + border-left: 1px solid #ddd; + } + } +} + +@media(max-width: $mainWidth) { + section.admonition { + .admonition-title { + text-align: center; + margin-top: 0; + } + + p { + padding-top: 10px; + border-top: 1px solid #ddd; + } + } +} + +// Navigation bar +nav { + padding-bottom: 8px; + border-bottom: double $bodyTextColor; + text-align: center; + font-family: Sans; + + a, a:visited { + margin: 0 0.5em; + font-size: 24px; + text-decoration: none; + color: $bodyTextColor; + } + + .brand-name { + text-align: center; + display: block; + font-weight: bold; + font-size: 32px; + color: $bodyTextColor; + margin-bottom: 8px; + } +} + +// Generic links +a, a:visited { + color: $linkColor; +} + +// Syntax highlighting +div.highlight { + border: 2px solid $blockBorderColor; + background-color: $blockBackgroundColor; + width: 90%; + margin: 0 auto; + overflow-x: auto; + + pre { + margin: 0; + padding: 6px 6px; + } + + .code-link { + border-top: 1px dotted $blockBorderColor; + padding: 3px 8px; + text-align: right; + } +} + +code { + padding: 2px; +} + +pre code { + padding: 0; +} + +// Helper classes +.center { + text-align: center; +} + +.quoteblock { + width: 90%; + margin: .5rem auto; + border-left: double black; + padding: 0.5em; + background-color: $blockBackgroundColor; + + blockquote { + font-style: italic; + } + + div.attribution { + text-align: right; + margin-right: 1em; + } +} -- cgit v1.1