Rotate 90

global.css
.rotate-90 {
  animation: rotate-90 1s ease-in-out both;
}

@keyframes rotate-90 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(90deg);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman