/* get the CSS ID selector from the text you want to flash and fill in below */
/* drop all below in Settings/Custom CSS*/
/* • Your Webinar Is In Progress - Do Not Close Window Or Presentation Will End • */
@keyframes pulse {
from {color: #fff;} /* this is the first color - it's white now */
to {color: #ffff99;} /* this is the color you want it to pulse to - yellow right now */
}
#fill_in_CSS_id_selector > div {
animation-name: pulse;
animation-duration: 1s; /* this is how fast it will pulse */
animation-timing-function: linear;
animation-direction: alternate;
animation-iteration-count: infinite;
}