From 479b2775d786fcd09ff627bcbba55c2fe38a526b Mon Sep 17 00:00:00 2001 From: "sigonasr2, Sig, Sigo" Date: Thu, 28 Apr 2022 10:07:28 -0500 Subject: [PATCH] Create template.css Rough draft template of animation system with timeout. No Twitch classes or selectors used yet. --- template.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 template.css diff --git a/template.css b/template.css new file mode 100644 index 0000000..d78ed7e --- /dev/null +++ b/template.css @@ -0,0 +1,30 @@ +.slideInText{ + left:0px; + position:relative; + opacity:1; + font-size:0px; + animation-duration:15s; + animation-name:slidein; +} + +@keyframes slidein{ + 0%{ + left:800px; + font-size:16px; + } + 5%{ + left:0px; + } + 75%{ + opacity:1; + font-size:16px; + } + 100%{ + opacity:0; + font-size:0px; + } +} + +body{ + background-color: color(0,0,0,0)!important; +}