rotating_logo.neovan 734 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <@html>
  2. <div id="rotatingLogo">
  3. <img class="rotateable" src="/assets/logo.svg" alt="NeoVan logo">
  4. <img class="textLogo" src="/assets/logo_text.svg" alt="NeoVan logo text">
  5. </div>
  6. <@/html>
  7. <@style>
  8. #rotatingLogo{
  9. display: flex;
  10. max-width: 100%;
  11. }
  12. .rotateable{
  13. max-width: 250px;
  14. }
  15. .textLogo{
  16. max-width: 100%;
  17. }
  18. .rotateable{
  19. animation: rotate 3600s linear infinite;
  20. }
  21. @keyframes rotate{
  22. from{transform: rotate(0deg);}
  23. to{transform: rotate(360deg);}
  24. }
  25. @media screen and (max-width: 800px){
  26. #rotatingLogo{
  27. flex-direction: column;
  28. align-items: center;
  29. }
  30. }
  31. <@/style>