code2024/bingo
0
1::-webkit-scrollbar {2 width: 10px;3 height: 10px;4 display: none;5}6 7::-webkit-scrollbar-button:start:decrement,8::-webkit-scrollbar-button:end:increment {9 height: 30px;10 background-color: transparent;11}12 13::-webkit-scrollbar-track-piece {14 background-color: #3b3b3b;15 -webkit-border-radius: 16px;16}17 18::-webkit-scrollbar-thumb:vertical {19 height: 50px;20 background-color: #666;21 border: 1px solid #eee;22 -webkit-border-radius: 6px;23}24 25/* loading start */26.loading-spinner {27 display: flex;28 justify-content: center;29 align-items: center;30 height: 100vh;31 opacity: 1;32 transition: opacity .8s ease-out;33}34 35.loading-spinner.hidden {36 opacity: 0;37}38 39.loading-spinner>div {40 width: 30px;41 height: 30px;42 background: linear-gradient(90deg, #2870EA 10.79%, #1B4AEF 87.08%);43 44 border-radius: 100%;45 display: inline-block;46 animation: sk-bouncedelay 1.4s infinite ease-in-out both;47}48 49.loading-spinner .bounce1 {50 animation-delay: -0.32s;51}52 53.loading-spinner .bounce2 {54 animation-delay: -0.16s;55}56 57@keyframes sk-bouncedelay {58 59 0%,60 80%,61 100% {62 transform: scale(0);63 }64 65 40% {66 transform: scale(1.0);67 }68}69 