Files
your-gold/assets/main.css
2025-07-03 11:13:42 +02:00

77 lines
1.6 KiB
CSS

@import '@nuxt/ui';
@import 'tailwindcss';
@import '@iconscout/unicons/css/line.css';
@theme {
/* fonts */
--font-inter: 'Inter', sans-serif;
--font-bounded: 'Bounded', sans-serif;
/* colors */
--color-bg-light: #fffefb;
--color-bg-dark: #1a1a1a;
--color-border: #d3e0de;
--color-text-light: #1a1a1a;
--color-text-dark: #fffefb;
--color-block: #e8e7e0;
--color-accent-green-light: #004f3d;
--color-accent-green-dark: #008567;
--color-gray: #6b6b6b;
/* button */
--color-button: #9a7f62;
--color-button-hover: #b7946d;
--color-button-disabled: #c5c5c5;
}
@layer utilities {
.h1 {
@apply font-bounded text-[24px] leading-[140%] font-bold uppercase md:text-[48px] xl:text-[64px];
}
.h1-big {
@apply font-bounded text-[32px] leading-[140%] font-bold uppercase sm:text-[48px] xl:text-[64px];
}
.h2-bold-bounded {
@apply font-bounded text-[24px] leading-[150%] md:leading-[120%] font-bold sm:text-[36px] md:text-[40px];
}
.h4-uppercase-bold-inter {
@apply font-inter text-base leading-[150%] font-bold uppercase sm:text-[20px] md:text-[24px];
}
.text-bold-24 {
@apply font-inter text-[17px] sm:text-[21px] md:text-2xl leading-[150%] font-bold;
}
.text-inter {
@apply font-inter text-sm sm:text-lg leading-[150%];
}
.space-25-55-75 {
@apply space-y-[25px] sm:space-y-[55px] md:space-y-[75px];
}
.space-25-55 {
@apply space-y-[25px] sm:space-y-[55px];
}
.space-25-75 {
@apply space-y-[25px] sm:space-y-[75px];
}
.space-55-75 {
@apply space-y-[55px] sm:space-y-[75px];
}
}
.main {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}