commit 276ed18e3c2ae2ae8e3946e0bf219ed05b5968ee
parent 50076dab07424c2de12e0d093106cce1c7a55799
Author: Milan Pässler <me@pbb.lc>
Date: Thu, 23 Jul 2020 16:22:05 +0200
parent 50076dab07424c2de12e0d093106cce1c7a55799
Author: Milan Pässler <me@pbb.lc>
Date: Thu, 23 Jul 2020 16:22:05 +0200
REGENBOGEN
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/client/style.css b/client/style.css @@ -12,6 +12,7 @@ font-face { } html, body { + animation: rainbow 2s linear infinite; margin: 0; font-family: Varela, sans-serif; background-color: #2a2a2a; @@ -27,7 +28,8 @@ a { header { position: relative; color: white; - background-color: #555; + /*background-color: #555;*/ + background: linear-gradient(90deg, red, green, blue, yellow); bottom-border: 1px solid rgba(255, 255, 255, .3); display: flex; flex-direction: row; @@ -95,6 +97,11 @@ header { 100% { transform: rotate(360deg); } } +@keyframes rainbow { + 0% { filter: hue-rotate(0deg); } + 100% { filter: hue-rotate(360deg); } +} + .loadMore { cursor: pointer; height: 72px;