This commit is contained in:
/home/neo 2026-06-14 19:29:26 +03:00 committed by GitHub
parent 14d4451b40
commit 2543dedc0d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,11 @@
* {
font-family: Comic Sans MS,Comic Sans, cursive !important;
animation: spin 2s linear infinite
}
body {
transform-origin: center;
}
@keyframes spin {
to { transform: rotate(360deg) }
}