From efd596f77ceb8c9ad3eacdf81856e038ae3718b5 Mon Sep 17 00:00:00 2001 From: marcellus Date: Thu, 26 Dec 2024 20:45:39 +0100 Subject: fix: colorscheme --- style.css | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) (limited to 'style.css') diff --git a/style.css b/style.css index ae21c06..01a9a63 100644 --- a/style.css +++ b/style.css @@ -10,8 +10,8 @@ } body { - background: linear-gradient(74deg, skyblue, pink 65%, salmon); - padding: 0 12vw; + background: linear-gradient(74deg, #fffaf0, #fff6f0 80%, white); + padding: 0 7vw; font-size: 1.1em; font-family: tinos; } @@ -24,7 +24,7 @@ header { } header { - filter: drop-shadow(white 2px 2px 0px); + filter: drop-shadow(1px 1px 0 white) drop-shadow(-1px 1px 0 white) drop-shadow(1px -1px 0 white) drop-shadow(-1px -1px 0 white) drop-shadow(0 0 3px white); } header { @@ -156,17 +156,17 @@ h1:hover,h2:hover { .timestamp { position: relative; padding: 5px 15px 5px 35px; - background: repeating-radial-gradient(circle farthest-corner at calc(0.5em + 8px) 50%, pink, salmon, #f04040); + background: repeating-radial-gradient(circle farthest-corner at calc(0.5em + 8px) 50%, lightgray, #858585); display: inline-block; width: auto; border-radius: 40px; - border: 1px solid pink; + border: 1px solid #222; margin-bottom: 30px; } .timestamp span { font-family: Finkheavy; - filter: drop-shadow(2px 2px #fff1d0); + filter: drop-shadow(2px 2px #fffaf0); } .timestamp::before { @@ -174,9 +174,9 @@ h1:hover,h2:hover { content: ''; width: 1em; height: 1em; - background: salmon; + background: #7b7b7b; border-radius: 100%; - border: 1px solid pink; + border: 1px solid #2C2C2C; left: 7px; } @@ -353,9 +353,18 @@ h3.skill, .skill-cats h4 { } } -hr { +hr.section-sep { + border: none; + border-top: 3px dashed grey; + margin-top: 4em; + margin-bottom: 4em; +} + +hr.sub-sep { border: none; border-top: 2px dashed #f62c2c; + margin-left: 10%; + margin-right: 10%; } .citation { -- cgit v1.2.3