mirror of
https://github.com/harivansh-afk/Austens-Wedding-Guide.git
synced 2026-04-15 10:05:14 +00:00
26 lines
673 B
CSS
26 lines
673 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
|
|
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
html {
|
|
@apply font-lato text-sage-900 bg-cream-50;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
@apply font-cormorant;
|
|
}
|
|
}
|
|
|
|
@layer components {
|
|
.nav-link {
|
|
@apply inline-flex items-center px-1 pt-1 text-sm font-medium border-b-2 border-transparent text-sage-700 hover:text-sage-900 hover:border-sage-500 transition-colors duration-200;
|
|
}
|
|
}
|