mirror of
https://github.com/LCE-Hub/LCE-Workshop.git
synced 2026-07-18 16:27:14 +00:00
12 lines
197 B
CSS
12 lines
197 B
CSS
* {
|
|
font-family: Comic Sans MS,Comic Sans, cursive !important;
|
|
animation: spin 2s linear infinite
|
|
}
|
|
body {
|
|
transform-origin: center;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg) }
|
|
}
|