Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. html, body {
  5. height: 100%;
  6. }
  7. body {
  8. margin: 0;
  9. background: #263238;
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. }
  14. #spinner {
  15. width: 200px;
  16. height: 200px;
  17. animation: spin 1s infinite linear;
  18. }
  19. @keyframes spin {
  20. from {
  21. transform: rotate(0);
  22. }
  23. to {
  24. transform: rotate(360deg);
  25. }
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <img id="spinner" src="nightuicon.png">
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement