Home › Forums › CSS › Emulating the 'omgubuntu' icon rotation animation effect › Reply To: Emulating the 'omgubuntu' icon rotation animation effect
October 14, 2017 at 8:31 am
#261342
Participant
Looks pretty basic:
.site-logo {
transition: 200ms all ease;
}
.site-logo:hover {
transform: rotate(-5deg);
}