42 lines
651 B
CSS
42 lines
651 B
CSS
/* app/globals.css */
|
|
|
|
@import "tailwindcss";
|
|
|
|
@layer base {
|
|
|
|
html,
|
|
body {
|
|
line-height: normal;
|
|
}
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Beachday';
|
|
src: url('/fonts/Beachday.woff2') format('woff2'),
|
|
url('/fonts/Beachday.woff') format('woff'),
|
|
url('/fonts/Beachday.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@keyframes animateright {
|
|
from {
|
|
right: -300px;
|
|
opacity: 0;
|
|
}
|
|
|
|
to {
|
|
right: 0;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.player-animation {
|
|
position: relative;
|
|
animation: animateright 1.5s;
|
|
}
|
|
|
|
@theme {
|
|
--font-beachday: 'Beachday', sans-serif;
|
|
--font-sans: var(--font-montserrat), sans-serif;
|
|
} |