commit 479b2775d786fcd09ff627bcbba55c2fe38a526b Author: sigonasr2, Sig, Sigo Date: Thu Apr 28 10:07:28 2022 -0500 Create template.css Rough draft template of animation system with timeout. No Twitch classes or selectors used yet. 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; +}