diff options
| author | Factiven <[email protected]> | 2023-04-28 12:46:19 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-04-28 12:46:19 +0700 |
| commit | 5182d84e2f716e0c9ce030f8fd4e47647ff96fe4 (patch) | |
| tree | 11b2ceb78d0b4c0be838eb2ec951ddffb6765587 /styles/globals.css | |
| parent | Update listEditor.js (diff) | |
| parent | Merge branch 'pre-production' into main (diff) | |
| download | moopa-5182d84e2f716e0c9ce030f8fd4e47647ff96fe4.tar.xz moopa-5182d84e2f716e0c9ce030f8fd4e47647ff96fe4.zip | |
Merge pull request #3 from DevanAbinaya/main
main to pre-prod
Diffstat (limited to 'styles/globals.css')
| -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); + } +} |