Sha256: 2e67bf9d6e1498cdbeeb75fc1d52468e1647e7e00a5661f4ebf4fcac5e226170
Contents?: true
Size: 756 Bytes
Versions: 390
Compression:
Stored size: 756 Bytes
Contents
.spinner { width: 16px; height: 16px; position: relative; } .spinner .double-bounce1, .spinner .double-bounce2 { width: 100%; height: 100%; border-radius: 50%; background-color: #333; opacity: 0.6; position: absolute; top: 0; left: 0; -webkit-animation: sk-bounce 2s infinite ease-in-out; animation: sk-bounce 2s infinite ease-in-out; } .spinner .double-bounce2 { -webkit-animation-delay: -1s; animation-delay: -1s; } @-webkit-keyframes sk-bounce { 0%, 100% { -webkit-transform: scale(0); } 50% { -webkit-transform: scale(1); } } @keyframes sk-bounce { 0%, 100% { transform: scale(0); -webkit-transform: scale(0); } 50% { transform: scale(1); -webkit-transform: scale(1); } }
Version data entries
390 entries across 390 versions & 1 rubygems