cooked/templates/styles.css
2024-10-25 17:13:01 +02:00

42 lines
888 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
.section-separator {
@apply border-0 border-b-2;
}
.text-desktop-small-bold {
@apply text-xs not-italic font-medium;
}
.text-desktop-small {
@apply text-xs not-italic font-normal;
}
.text-desktop-heading-xl {
@apply text-4xl not-italic font-medium;
}
.text-desktop-heading-l {
@apply text-3xl not-italic font-medium;
font-size: 32px;
}
.text-desktop-heading-m {
@apply text-2xl not-italic font-medium;
}
.text-mobile-small-strong {
@apply text-sm not-italic font-medium;
}
.text-mobile-heading-l {
@apply text-2xl not-italic font-medium;
}
.text-mobile-heading-xxl {
@apply text-5xl not-italic font-medium;
}