From 96d8e07817421d68b54c4391f1ea1291d1220c35 Mon Sep 17 00:00:00 2001 From: etherware-novice <73374039+etherware-novice@users.noreply.github.com> Date: Sat, 31 Aug 2024 12:22:50 -0500 Subject: [PATCH] overlay god help me --- _sass/main.scss | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/_sass/main.scss b/_sass/main.scss index c0f4726..1a3f9d9 100644 --- a/_sass/main.scss +++ b/_sass/main.scss @@ -112,3 +112,25 @@ code { padding: .5em; margin: 0.5em 0.25em; } + +a:hover{ + text-shadow: 0px 0px 3px #C8CEB0 ; +} + +body::before { + content: ""; + position: fixed; + left: 0px; top: 0px; + width: 100%; height: 100%; + opacity: 0.2; + pointer-events: none; z-index: 1000; + background-image: url("/assets/images/decor/overlay.png"); + animation-name: static; + animation-duration: 2s; animation-iteration-count: infinite; + animation-timing-function: steps(4); +} + +@keyframes static { + 0% { background-position: 0 0 } + 100% { background-position: 0 4px } +}