#slantcord
1 messages · Page 1 of 1 (latest)
yeah just don't right click on the right side of the screen
body {
transform: rotate(-2deg);
}
for left-leaning individuals
oh turns out this also breaks some hover things too
wait no nvm im just dumb
everything seems be fine for me
spincord
body {
animation: spin 2s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
for a worse experience set it to 0.1s
is your discord running? you better go catch it
body {
animation: slidery alternate infinite 12s;
}
@keyframes slidery {
from {
transform: translate(-100%);
}
to {
transform: translate(100%);
}
}
help its so hard to click on things
:)
*{
transform: rotate(0deg);
transition: transform 15s;
}
*:hover{
transform: rotate(360deg);
}
oh god you set it to *