diff options
| author | Factiven <[email protected]> | 2023-04-25 22:18:37 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-04-25 22:18:37 +0700 |
| commit | 66567221d95ac7d2422be720e494cdb48b009d11 (patch) | |
| tree | 802d05e3c8ac6f5d2adeb6270106cd5b04d2cd06 /styles | |
| parent | Merge pull request #1 from DevanAbinaya/pre-production (diff) | |
| download | moopa-66567221d95ac7d2422be720e494cdb48b009d11.tar.xz moopa-66567221d95ac7d2422be720e494cdb48b009d11.zip | |
Update v3.3
Diffstat (limited to 'styles')
| -rw-r--r-- | styles/globals.css | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/styles/globals.css b/styles/globals.css index b101081..ff7a1bb 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -147,3 +147,59 @@ button { .skip-button { @apply bg-white xs:w-28 xs:h-9 w-24 h-7 -right-8 -bottom-7 rounded-md font-karla shadow-xl hover:bg-[#f1f1f1] text-black md:static absolute xs:-right-6 xs:-bottom-5 xs:text-[15px] text-xs md:text-sm; } + +.lds-ellipsis { + display: inline-block; + position: relative; + width: 80px; + height: 80px; +} +.lds-ellipsis div { + position: absolute; + top: 33px; + width: 13px; + height: 13px; + border-radius: 50%; + background: #27272e; + animation-timing-function: cubic-bezier(0, 1, 1, 0); +} +.lds-ellipsis div:nth-child(1) { + left: 8px; + animation: lds-ellipsis1 0.6s infinite; +} +.lds-ellipsis div:nth-child(2) { + left: 8px; + animation: lds-ellipsis2 0.6s infinite; +} +.lds-ellipsis div:nth-child(3) { + left: 32px; + animation: lds-ellipsis2 0.6s infinite; +} +.lds-ellipsis div:nth-child(4) { + left: 56px; + animation: lds-ellipsis3 0.6s infinite; +} +@keyframes lds-ellipsis1 { + 0% { + transform: scale(0); + } + 100% { + transform: scale(1); + } +} +@keyframes lds-ellipsis3 { + 0% { + transform: scale(1); + } + 100% { + transform: scale(0); + } +} +@keyframes lds-ellipsis2 { + 0% { + transform: translate(0, 0); + } + 100% { + transform: translate(24px, 0); + } +} |