Luogu rotates when not active.
Luogu Lazy Acitive by DanielDami
Details
AuthorDanielDami
LicenseNo License
Categoryluogu.com
Created
Updated
Size630 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Luogu Lazy Acitive
@namespace github.com/openstyles/stylus
@version 1.0.3
@description Luogu rotates when not active.
@author DanielDami
==/UserStyle== */
@-moz-document regexp(".*luogu.*") {
/* Insert code here... */
body{
transform: rotate(360deg) rotateY(180deg) rotateZ(180deg) rotateX(180deg);
transition: 1s ease all
}
img.avatar{
transform: rotate(180deg) rotateY(360deg) rotateZ(360deg) rotateX(360deg);
transition: 1.4s ease all
}
img.avatar:hover{
transform: rotate(0deg) scaleY(5000) scaleX(10)
}
body:hover{
transform: rotate(0deg)
}
}