59 lines
980 B
CSS
59 lines
980 B
CSS
@import 'tailwindcss';
|
|
|
|
@theme {
|
|
--color-primary: #3b82f6;
|
|
--color-primary-hover: #2563eb;
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background-color: #0a0a0a;
|
|
color: #ffffff;
|
|
line-height: 1.6;
|
|
}
|
|
}
|
|
|
|
@layer components {
|
|
.card {
|
|
background: #141414;
|
|
border: 1px solid #27272a;
|
|
border-radius: 12px;
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.badge {
|
|
display: inline-block;
|
|
padding: 0.25rem 0.75rem;
|
|
border-radius: 9999px;
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.badge-blue {
|
|
background: rgba(59, 130, 246, 0.2);
|
|
color: #60a5fa;
|
|
}
|
|
|
|
.badge-green {
|
|
background: rgba(34, 197, 94, 0.2);
|
|
color: #4ade80;
|
|
}
|
|
|
|
.badge-purple {
|
|
background: rgba(168, 85, 247, 0.2);
|
|
color: #c084fc;
|
|
}
|
|
|
|
.badge-orange {
|
|
background: rgba(249, 115, 22, 0.2);
|
|
color: #fb923c;
|
|
}
|
|
}
|