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 } +}