Advertisement
andruhovski

Splitter CSS file

Oct 18th, 2023
1,111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.42 KB | Source Code | 0 0
  1. .image>img {
  2.   aspect-ratio: 1/1.41;
  3. }
  4.  
  5. #spinner {
  6.   display: none;
  7. }
  8.  
  9. .spinner {
  10.   width: 48px;
  11.   height: 48px;
  12.   border: 5px solid gray;
  13.   border-bottom-color: transparent;
  14.   border-radius: 50%;
  15.   display: inline-block;
  16.   box-sizing: border-box;
  17.   animation: rotation 1s linear infinite;
  18. }
  19.  
  20. @keyframes rotation {
  21.   0% {
  22.     transform: rotate(0deg);
  23.   }
  24.  
  25.   100% {
  26.     transform: rotate(360deg);
  27.   }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement