Spaces:
Runtime error
Runtime error
File size: 581 Bytes
1720172 | 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 | @tailwind base;
@tailwind components;
@tailwind utilities;
* {
box-sizing: border-box;
}
body {
background-color: #F9F9F7;
color: #111110;
font-family: 'Onest', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #E5E5E3; border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: #D0D0CE; }
.animate-pulse-slow {
animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
|