anycoder-78b05e60 / styles /globals.css
vamcrizer's picture
Upload styles/globals.css with huggingface_hub
2f41794 verified
raw
history blame contribute delete
886 Bytes
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
scroll-behavior: smooth;
}
body {
@apply bg-gray-50 text-gray-900 antialiased;
}
}
@layer components {
.section-container {
@apply max-w-6xl mx-auto px-4 sm:px-6 lg:px-8 py-16 sm:py-20;
}
.btn-primary {
@apply inline-flex items-center justify-center px-6 py-3 border border-transparent text-base font-medium rounded-lg text-white bg-primary-600 hover:bg-primary-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500 transition-colors duration-200;
}
.btn-secondary {
@apply inline-flex items-center justify-center px-6 py-3 border border-gray-300 text-base font-medium rounded-lg text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500 transition-colors duration-200;
}
}