Exactly what it sounds like. A CSS template that can be copied over to an OBS browser source with stylish animations and works right out-of-the-box.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
429 B

.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;
}