36 lines
864 B
CSS
36 lines
864 B
CSS
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
|
||
|
|
|
||
|
|
@tailwind base;
|
||
|
|
@tailwind components;
|
||
|
|
@tailwind utilities;
|
||
|
|
|
||
|
|
@layer base {
|
||
|
|
* {
|
||
|
|
@apply border-gray-200;
|
||
|
|
}
|
||
|
|
|
||
|
|
body {
|
||
|
|
@apply bg-gray-50 text-gray-900 font-sans;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@layer components {
|
||
|
|
/* Custom component styles */
|
||
|
|
.btn-primary {
|
||
|
|
@apply bg-primary-500 hover:bg-primary-600 text-white font-medium px-4 py-2 rounded-lg transition-colors;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-secondary {
|
||
|
|
@apply bg-secondary-500 hover:bg-secondary-600 text-white font-medium px-4 py-2 rounded-lg transition-colors;
|
||
|
|
}
|
||
|
|
|
||
|
|
.input-field {
|
||
|
|
@apply w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-primary-500 focus:border-transparent outline-none transition-all;
|
||
|
|
}
|
||
|
|
|
||
|
|
.card {
|
||
|
|
@apply bg-white rounded-xl shadow-sm border border-gray-200 p-6;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|