From fd18840bda54dfe80649536df5ae59c6568f1d39 Mon Sep 17 00:00:00 2001 From: Luke Boswell Date: Sun, 25 Jun 2023 14:20:32 +1000 Subject: [PATCH] update css --- www/wip_new_website/static/site.css | 46 +++++++++++++++++++++++++++-- 1 file changed, 43 insertions(+), 3 deletions(-) diff --git a/www/wip_new_website/static/site.css b/www/wip_new_website/static/site.css index 76d4f743b1..66781081d0 100644 --- a/www/wip_new_website/static/site.css +++ b/www/wip_new_website/static/site.css @@ -27,7 +27,7 @@ html { line-height: 1.5rem; - background: var(--body-bg); + background: var(--body-bg-color); color: var(--text-color); font-family: "Lato", sans-serif; } @@ -67,7 +67,7 @@ li { } #top-bar { - background-color: var(--top-bar-bg); + background-color: var(--violet-bg); width: 100%; height: 50px; } @@ -277,7 +277,7 @@ footer { margin: 0; } } - + @font-face { font-family: "Permanent Marker"; font-style: normal; @@ -545,3 +545,43 @@ code .dim { height: 40px; margin: 0 auto; } + +.home-goals-container { + display: flex; + justify-content: space-between; +} + +.home-goals-column { + flex-basis: 30%; + padding: 20px; + background-color: var(--violet-bg); + margin-right: 20px; +} + +.home-goals-column:last-child { + margin-right: 0; +} + +.home-goals-title { + font-size: 18px; + font-weight: bold; + margin-bottom: 10px; +} + +.home-goals-description { + font-size: 14px; + line-height: 1.5; + margin-bottom: 10px; +} + +.home-goals-learn-more { + color: var(--violet); + text-decoration: none; +} + +#footer { + background-color: var(--violet-bg); + color: var(--text-color); + padding: 20px; + text-align: center; + } \ No newline at end of file