deepstudio / styles /globals.css
00Boobs00's picture
Upload styles/globals.css with huggingface_hub
c85520a verified
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-gray-50 text-gray-900 dark:bg-dark-bg dark:text-gray-100 transition-colors duration-300;
}
}
@layer components {
.btn {
@apply inline-flex items-center justify-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-offset-2 transition-colors duration-200;
}
.btn-primary {
@apply btn bg-primary-600 text-white hover:bg-primary-700 focus:ring-primary-500;
}
.btn-secondary {
@apply btn bg-white text-gray-700 border-gray-300 hover:bg-gray-50 dark:bg-dark-surface dark:text-gray-200 dark:border-gray-600 dark:hover:bg-gray-700;
}
.card {
@apply bg-white rounded-lg shadow-sm border border-gray-200 dark:bg-dark-surface dark:border-dark-border p-6;
}
.input-field {
@apply w-full rounded-md border-gray-300 shadow-sm focus:border-primary-500 focus:ring-primary-500 dark:bg-dark-bg dark:border-gray-600 dark:text-white sm:text-sm;
}
}