From ac3d58f20788d6280a1c6857d9a105101a46c736 Mon Sep 17 00:00:00 2001 From: garrettmills Date: Sun, 15 Jan 2023 20:22:05 -0600 Subject: [PATCH] Add color bar to theme --- src/app/resources/assets/main-70s.css | 13 +++++++++++-- src/app/resources/views/template_70s.pug | 5 +++++ 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/src/app/resources/assets/main-70s.css b/src/app/resources/assets/main-70s.css index 66227e8..35d5933 100644 --- a/src/app/resources/assets/main-70s.css +++ b/src/app/resources/assets/main-70s.css @@ -143,6 +143,14 @@ body { padding: 0; overflow-x: hidden; } +.color-chips { + display: flex; + flex-direction: row; +} +.color-chips .chip { + min-height: 10px; + flex: 1; +} section { /*min-height: 100vh;*/ z-index: 100; @@ -456,14 +464,15 @@ footer .auth-container .profile { display: flex; flex-direction: column; align-items: center; - justify-content: center; - margin-top: 150px; + justify-content: end; + margin-top: -10px; } .hero-box { border: 2px solid var(--c-box); padding: 0 20px; text-align: center; background-color: var(--c-background-offset); + margin-bottom: 120px; } .hero h1 { font-weight: 300; diff --git a/src/app/resources/views/template_70s.pug b/src/app/resources/views/template_70s.pug index 562d5d7..e67319c 100644 --- a/src/app/resources/views/template_70s.pug +++ b/src/app/resources/views/template_70s.pug @@ -28,6 +28,11 @@ head link(rel='shortcut icon' href=asset('favicon/favicon.ico')) body + .color-chips + .chip(style="background-color: var(--c-line-1)") + .chip(style="background-color: var(--c-line-2)") + .chip(style="background-color: var(--c-line-3)") + block content footer