Originally posted by Isomorphic
View Post
Code:
.spinner {
width: 160px;
height: 40px;
font-size: 18px;
font-family: Roboto, sans-serif;
}
.spinner img {
width: 30px;
height: 25px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
Leave a comment: