ultron1 / website /src /index.css
ghostdrive1's picture
feat: master website scaffold — Mission Control UI (Priority 2)
1720172
Raw
History Blame Contribute Delete
581 Bytes
@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;
}