<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
body {
line-height: 1.45;
font-family: Ubuntu, sans-serif;
font-size: 17px;
color: #252525;
}
p {
padding: 16px;
/* ALTERNATIVE */
/*
animation-name: jump;
animation-duration: 1.75s;
animation-timing-function: linear;
animation-delay: 2.5s;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-fill-mode: none;
*/
animation: jump 1.75s linear 2.5s infinite alternate none;
}
@keyframes jump {
from {
margin-top: 0;
background-color: #666;
color: #f1f1f1;
}
to {
margin-top: 50%;
background-color: #808080;
color: #252525;
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.