From d90c9cda4a021d8d71098afc97e92566b0c4844a Mon Sep 17 00:00:00 2001 From: Simon Priet Date: Thu, 18 Nov 2021 11:29:48 +0100 Subject: [PATCH] Added PRG banner color and animation to alert me that I'm on production env. --- PRD banner.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 PRD banner.css diff --git a/PRD banner.css b/PRD banner.css new file mode 100644 index 0000000..662479c --- /dev/null +++ b/PRD banner.css @@ -0,0 +1,17 @@ +@-moz-document domain("stream.alkemics.com") { + .Navbar { + animation-duration: 3s; + animation-name: slidein; + animation-iteration-count: infinite; + animation-direction: alternate; + } + @keyframes slidein { + from { + background-color: black; + } + + to { + background-color: rgb(30, 180, 155); + } + } +} \ No newline at end of file