This commit is contained in:
Roscoe 2026-06-02 13:42:19 +01:00
commit 2de9378b63
Signed by: RoscoeDaWah
SSH key fingerprint: SHA256:Hqn452XQ1ETzUt/FthJu6+OFkS4NBxCv5VQSEvuk7CE
2 changed files with 12 additions and 2 deletions

View file

@ -1,3 +1,13 @@
* {
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) }
}