Reminder to all the new friends to add custom CSS to make the site more friendly.
@keyframes squatStretch {
0% { transform : scaleY (1 ); }
25% { transform : scaleY (1.3 ); }
50% { transform : scaleY (0.7 ); }
75% { transform : scaleY (1.2 ); }
100% { transform : scaleY (1 ); }
}
@keyframes colorPulse {
0% { background-color : #FF6347 ; color : #00FA9A ; }
25% { background-color : #7B68EE ; color : #FFFFE0 ; }
50% { background-color : #FFD700 ; color : #DC143C ; }
75% { background-color : #20B2AA ; color : #FF4500 ; }
100% { background-color : #FF6347 ; color : #00FA9A ; }
}
body {
animation : squatStretch 2s infinite, colorPulse 3s infinite;
font-family : 'Arial' , sans-serif;
text-shadow : 1px 1px 4px #ADFF2F ;
overflow : visible;
}
h1 , h2 , h3 , p , div , span , a {
animation : squatStretch 1.8s infinite, colorPulse 2.5s infinite;
transform-origin : center;
display : inline-block;
visibility : visible !important ;
}
button {
animation : squatStretch 1.5s infinite, colorPulse 2s infinite;
border : 2px solid #FF00FF ;
padding : 8px 16px ;
visibility : visible !important ;
}
img {
animation : squatStretch 1.2s infinite, colorPulse 1.8s infinite;
filter : brightness (110% );
visibility : visible !important ;
}
:hover {
animation-duration : 0.5s !important ;
transform : scaleY (1.1 );
}[Expand Post]
* {
transition : all 0.4s ease;
box-shadow : 0 0 6px #FF69B4 ;
visibility : visible !important ;
}