Spaces:
Sleeping
Sleeping
File size: 592 Bytes
0f8617c | 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 | @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);
} |