From ecf32e41c2e57d2ff33025a73ea4f084a5441043 Mon Sep 17 00:00:00 2001 From: Adam French Date: Wed, 26 Nov 2025 14:06:03 +0000 Subject: [PATCH] add color pallete and div styles --- nginx/vue/public/css/styles.css | 37 ++++++++++++++++++++++++++------- 1 file changed, 30 insertions(+), 7 deletions(-) diff --git a/nginx/vue/public/css/styles.css b/nginx/vue/public/css/styles.css index bd673fb..41c8b64 100644 --- a/nginx/vue/public/css/styles.css +++ b/nginx/vue/public/css/styles.css @@ -8,17 +8,30 @@ /* Variables */ /* Blue - Beige */ :root { - --primary: #153448; - --secondary: #3c5b6f; - --tertiary: #948979; - --quaternary: #f5bb78; - --background: #c4bbb8; - --background_paper: #dfd0b8; + /*--primary: #bfb04c; + --secondary: #bdad46; + --tertiary: #4b5743; + --quaternary: #3e4637; + --background_paper: #453d3e; + --background: #353d2e;*/ + + --primary: #f74510; + --secondary: #c6b652; + --tertiary: #5a6952; + --quaternary: #424542; + --background_paper: #293029; + --background: #5a6952; + + /*--tertiary: #948979;*/ + /*--quaternary: #f5bb78;*/ + /*--background: #c4bbb8;*/ + /*--background_paper: #dfd0b8;*/ } body { /*background-image: linear-gradient(to bottom, aqua, blue);*/ - font-family: "Times New Roman", Times, serif; + font-family: + "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif; /*width: 100vw;*/ /*height: 100vh;*/ @@ -28,6 +41,12 @@ body { background-color: var(--background); } +div { + background-color: var(--background_paper); + box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2); + border: solid 2px var(--primary); +} + p { color: var(--secondary); } @@ -44,6 +63,10 @@ h4 { height: 50mm; } +.floating { + position: absolute; +} + /* A5 Page */ .a5page { /* overflow: scroll; */