forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/assets/events/fistmas/css/candycane.css

27 lines
604 B
CSS

#post-title, #post-content p {
--color2: #cc4145;
--color1: rgb(12, 128, 101);
font-family: "Open Sans", sans-serif;
background: repeating-linear-gradient(
45deg, var(--color2), var(--color2) 10px,
var(--color1) 11px, var(--color1) 30px
);
background-clip: text;
color: transparent;
-webkit-background-clip: text;
animation: 45s linear 0s infinite candy-corn-move;
}
#post-title a {
color: transparent !important;
}
#post-title:hover, #post-content p:hover {
animation-duration: 10s;
}
@keyframes candy-corn-move {
from {background-position: 0px;}
to {background-position: 1000px;}
}