From 178477613a85f33cd87a2ebaf9de0191e2139fcd Mon Sep 17 00:00:00 2001 From: shockrah Date: Tue, 27 Jan 2026 14:47:11 -0800 Subject: [PATCH] Adding a simple border to the home button --- main-site/themes/temper/static/css/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/main-site/themes/temper/static/css/style.css b/main-site/themes/temper/static/css/style.css index 969901e..b2bc049 100644 --- a/main-site/themes/temper/static/css/style.css +++ b/main-site/themes/temper/static/css/style.css @@ -49,6 +49,15 @@ blockquote { -o-animation: fadeIn 3s; -ms-animation: fadeIn 3s; } +.home-button { + padding-left: 1em; + background-color: #212121; + border-style: solid; + border-width: 3px; + border-radius: 0.5em; + border-color: darkorange; + padding-right: 1em; +} @keyframes fadeIn { 0% {opacity:0;} 100% {opacity:1;}