Spaces:
Sleeping
Sleeping
@tailwind base; | |
@tailwind components; | |
@tailwind utilities; | |
* { | |
scroll-behavior: smooth; | |
} | |
.tracking-in-contract { | |
-webkit-animation: tracking-in-contract 2s cubic-bezier(0.215, 0.61, 0.355, 1) | |
both; | |
animation: tracking-in-contract 2s cubic-bezier(0.215, 0.61, 0.355, 1) both; | |
} | |
@-webkit-keyframes tracking-in-contract { | |
0% { | |
letter-spacing: 1em; | |
opacity: 0; | |
} | |
40% { | |
opacity: 0.6; | |
} | |
100% { | |
letter-spacing: normal; | |
opacity: 1; | |
} | |
} | |
@keyframes tracking-in-contract { | |
0% { | |
letter-spacing: 1em; | |
opacity: 0; | |
} | |
40% { | |
opacity: 0.6; | |
} | |
100% { | |
letter-spacing: normal; | |
opacity: 1; | |
} | |
} | |
.tracking-in-expand { | |
-webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) | |
both; | |
animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) both; | |
} | |
@-webkit-keyframes tracking-in-expand { | |
0% { | |
letter-spacing: -0.5em; | |
opacity: 0; | |
} | |
40% { | |
opacity: 0.6; | |
} | |
100% { | |
opacity: 1; | |
} | |
} | |
@keyframes tracking-in-expand { | |
0% { | |
letter-spacing: -0.5em; | |
opacity: 0; | |
} | |
40% { | |
opacity: 0.6; | |
} | |
100% { | |
opacity: 1; | |
} | |
} | |
.focus-in-contract { | |
-webkit-animation: focus-in-contract 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) | |
both; | |
animation: focus-in-contract 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; | |
} | |
@-webkit-keyframes focus-in-contract { | |
0% { | |
letter-spacing: 1em; | |
-webkit-filter: blur(12px); | |
filter: blur(12px); | |
opacity: 0; | |
} | |
100% { | |
-webkit-filter: blur(0px); | |
filter: blur(0px); | |
opacity: 1; | |
} | |
} | |
@keyframes focus-in-contract { | |
0% { | |
letter-spacing: 1em; | |
-webkit-filter: blur(12px); | |
filter: blur(12px); | |
opacity: 0; | |
} | |
100% { | |
-webkit-filter: blur(0px); | |
filter: blur(0px); | |
opacity: 1; | |
} | |
} | |
.heartbeat { | |
-webkit-animation: heartbeat 1.5s ease-in-out infinite both; | |
animation: heartbeat 1.5s ease-in-out infinite both; | |
} | |
@-webkit-keyframes heartbeat { | |
from { | |
-webkit-transform: scale(1); | |
transform: scale(1); | |
-webkit-transform-origin: center center; | |
transform-origin: center center; | |
-webkit-animation-timing-function: ease-out; | |
animation-timing-function: ease-out; | |
} | |
10% { | |
-webkit-transform: scale(0.91); | |
transform: scale(0.91); | |
-webkit-animation-timing-function: ease-in; | |
animation-timing-function: ease-in; | |
} | |
17% { | |
-webkit-transform: scale(0.98); | |
transform: scale(0.98); | |
-webkit-animation-timing-function: ease-out; | |
animation-timing-function: ease-out; | |
} | |
33% { | |
-webkit-transform: scale(0.87); | |
transform: scale(0.87); | |
-webkit-animation-timing-function: ease-in; | |
animation-timing-function: ease-in; | |
} | |
45% { | |
-webkit-transform: scale(1); | |
transform: scale(1); | |
-webkit-animation-timing-function: ease-out; | |
animation-timing-function: ease-out; | |
} | |
} | |
@keyframes heartbeat { | |
from { | |
-webkit-transform: scale(1); | |
transform: scale(1); | |
-webkit-transform-origin: center center; | |
transform-origin: center center; | |
-webkit-animation-timing-function: ease-out; | |
animation-timing-function: ease-out; | |
} | |
10% { | |
-webkit-transform: scale(0.91); | |
transform: scale(0.91); | |
-webkit-animation-timing-function: ease-in; | |
animation-timing-function: ease-in; | |
} | |
17% { | |
-webkit-transform: scale(0.98); | |
transform: scale(0.98); | |
-webkit-animation-timing-function: ease-out; | |
animation-timing-function: ease-out; | |
} | |
33% { | |
-webkit-transform: scale(0.87); | |
transform: scale(0.87); | |
-webkit-animation-timing-function: ease-in; | |
animation-timing-function: ease-in; | |
} | |
45% { | |
-webkit-transform: scale(1); | |
transform: scale(1); | |
-webkit-animation-timing-function: ease-out; | |
animation-timing-function: ease-out; | |
} | |
} | |