13 lines
227 B
CSS
13 lines
227 B
CSS
* {
|
|
font-family: "Comic Sans MS", cursive ;
|
|
}
|
|
|
|
button:hover,
|
|
footer img:hover {
|
|
animation: rotater 2s linear infinite;
|
|
}
|
|
|
|
@keyframes rotater {
|
|
0% { transform: rotate(0deg) }
|
|
100% { transform: rotate(360deg) }
|
|
}
|