From 1b1ab1004abb4d0912afccebe597419e644f0c1f Mon Sep 17 00:00:00 2001 From: urbicide <40123196+urbicide@users.noreply.github.com> Date: Fri, 30 Oct 2020 09:26:35 +0300 Subject: [PATCH] Update style.css --- css/style.css | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/css/style.css b/css/style.css index 22445a0..cc29736 100644 --- a/css/style.css +++ b/css/style.css @@ -8,6 +8,54 @@ a:link, a:visited, a:hover, a:active { color: #000000; } +.rainbow { + -webkit-animation: rainbow 5s infinite; + -ms-animation: rainbow 5s infinite; + animation: rainbow 5s infinite; +} + +@-webkit-keyframes rainbow{ + 0%{color: orange;} + 10%{color: purple;} + 20%{color: red;} + 30%{color: CadetBlue;} + 40%{color: yellow;} + 50%{color: coral;} + 60%{color: green;} + 70%{color: cyan;} + 80%{color: DeepPink;} + 90%{color: DodgerBlue;} + 100%{color: orange;} +} + +@-ms-keyframes rainbow{ + 0%{color: orange;} + 10%{color: purple;} + 20%{color: red;} + 30%{color: CadetBlue;} + 40%{color: yellow;} + 50%{color: coral;} + 60%{color: green;} + 70%{color: cyan;} + 80%{color: DeepPink;} + 90%{color: DodgerBlue;} + 100%{color: orange;} +} + +@keyframes rainbow{ + 0%{color: orange;} + 10%{color: purple;} + 20%{color: red;} + 30%{color: CadetBlue;} + 40%{color: yellow;} + 50%{color: coral;} + 60%{color: green;} + 70%{color: cyan;} + 80%{color: DeepPink;} + 90%{color: DodgerBlue;} + 100%{color: orange;} +} + video { object-fit: contain; top: 0;