Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Emulating the 'omgubuntu' icon rotation animation effect Reply To: Emulating the 'omgubuntu' icon rotation animation effect

#261342
Shikkediel
Participant

Looks pretty basic:

.site-logo {
  transition: 200ms all ease;
}

.site-logo:hover {
  transform: rotate(-5deg);
}