anycoder-cc1d8ec7 / styles /globals.css
raouldukelivesagain's picture
Upload styles/globals.css with huggingface_hub
63d692b verified
raw
history blame contribute delete
613 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-dark text-light min-h-screen;
}
}
@layer components {
.btn-primary {
@apply px-6 py-3 bg-primary hover:bg-secondary text-white font-semibold rounded-lg transition-colors duration-200;
}
.btn-secondary {
@apply px-6 py-3 bg-gray-700 hover:bg-gray-600 text-white font-semibold rounded-lg transition-colors duration-200;
}
.card {
@apply bg-gray-800 rounded-xl p-6 shadow-lg border border-gray-700;
}
.stat-card {
@apply bg-gray-900 rounded-lg p-4 border border-gray-700;
}
}