From 5ff55a50a21068c9c7cd655f1ece64d4af9299bc Mon Sep 17 00:00:00 2001 From: shockrah Date: Thu, 19 Oct 2023 16:22:19 -0700 Subject: [PATCH] Adding blockquote css Fixing background image for mobile and root page --- main-site/themes/temper/layouts/index.html | 2 +- main-site/themes/temper/static/css/style.css | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/main-site/themes/temper/layouts/index.html b/main-site/themes/temper/layouts/index.html index 6c73506..ef179e6 100644 --- a/main-site/themes/temper/layouts/index.html +++ b/main-site/themes/temper/layouts/index.html @@ -1,7 +1,7 @@ {{ partial "head.html" . }} -{{ if eq .Permalink .Site.BaseURL }} +{{ if .IsHome }} {{ else }} diff --git a/main-site/themes/temper/static/css/style.css b/main-site/themes/temper/static/css/style.css index cc3765b..4cbb4fc 100644 --- a/main-site/themes/temper/static/css/style.css +++ b/main-site/themes/temper/static/css/style.css @@ -5,6 +5,8 @@ body { } .main-page { background-image: url("/img/bg.png"); + background-repeat: no-repeat; + background-size: cover; } html { @@ -15,6 +17,12 @@ html { overflow-x: hidden; } +blockquote { + border-left: whitesmoke; + border-left-style: solid; + padding-left: 20px; +} + .feed-container { display: flex; justify-content: center; @@ -252,4 +260,10 @@ ul.timeline > li:before { position: static; transform: none; } + .main-page { + min-width: 100px;; + background-size: auto 100vh; + background-position: 25% top; + } } +