andruhovski icon

Splitter CSS file

andruhovski | PRO | 10/18/23 08:42:49 PM UTC | 0 ⭐ | 5342 👁️ | Never ⏰ | []
CSS |

420 B

|

Source Code

|

0 👍

/

0 👎

.image>img {
  aspect-ratio: 1/1.41;
}
 
#spinner {
  display: none;
}
 
.spinner {
  width: 48px;
  height: 48px;
  border: 5px solid gray;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
 
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
 
  100% {
    transform: rotate(360deg);
  }
}

Comments

  •  icon
    01/01/70 12:00:00 AM UTC
    Plain Text |

    0 B

    |

    👍

    /

    👎