Spaces:
Sleeping
Sleeping
| @import "tailwindcss"; | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| font-family: 'Inter', sans-serif; | |
| -webkit-font-smoothing: antialiased; | |
| -moz-osx-font-smoothing: grayscale; | |
| } | |
| :root { | |
| --primary: #2563eb; | |
| --secondary: #64748b; | |
| --accent: #f59e0b; | |
| } | |
| body { | |
| background-color: #f8fafc; | |
| color: #1e293b; | |
| } | |
| .btn-primary { | |
| background-color: var(--primary); | |
| color: white; | |
| padding: 0.5rem 1.5rem; | |
| border-radius: 9999px; | |
| font-weight: 500; | |
| transition: all 0.2s; | |
| } | |
| .btn-primary:hover { | |
| background-color: #1d4ed8; | |
| transform: translateY(-1px); | |
| } |