Spaces:
Sleeping
Sleeping
File size: 831 Bytes
e3362fc 51c751b e3362fc 51c751b e3362fc 51c751b e3362fc 0963fdc e3362fc 0963fdc e3362fc 0963fdc e3362fc 0963fdc 51c751b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | @import "tailwindcss";
@theme {
--color-primary: #1877F2;
--color-primary-hover: #166FE5;
}
@layer base {
body {
background-color: #050505;
color: #E4E6EB;
background-attachment: fixed;
min-height: 100vh;
font-family: var(--font-inter), sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-outfit), sans-serif;
}
}
/* Custom Audio Player styles */
@layer utilities {
audio::-webkit-media-controls-panel {
background-color: var(--border);
}
audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
color: #fff;
}
}
/* Progress bar shimmer animation */
@keyframes shimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
.animate-shimmer {
animation: shimmer 1.5s infinite;
}
|