You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
714 B
CSS

1 year ago
/* Renewable Card Text Flicker */
@keyframes renewableCardTextFlicker {
30%, 32%, 34%, 80% {
text-shadow: 0 0 10px #00ff2a, 0 0 20px #00ff2a, 0 0 30px #00ff2a, 0 0 40px #00ff2a;
}
0%, 31%, 33%, 35%, 81% {
text-shadow: 0 0 10px #00ff2a, 0 0 20px #00ff2a;
}
}
/* Renewable Card */
.renewableCard {
width: 200px;
padding: 30px;
background-color: #1a1a1a;
}
/* Renewable Card H4 */
.renewableCard h4 {
width: 100%;
height: 100%;
text-align: center;
font-family: NeonSans;
font-size: 30px;
color: #00ff2a;
text-shadow: 0 0 10px #00ff2a, 0 0 20px #00ff2a, 0 0 30px #00ff2a, 0 0 40px #00ff2a;
animation: renewableCardTextFlicker 6s infinite;
}