cooked/templates/styles.css

42 lines
888 B
CSS
Raw Normal View History

2024-10-22 15:18:20 +02:00
@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');
2024-10-25 17:13:01 +02:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2024-10-22 15:18:20 +02:00
2024-10-25 17:13:01 +02:00
.section-separator {
@apply border-0 border-b-2;
2024-10-22 15:18:20 +02:00
}
2024-10-25 17:13:01 +02:00
.text-desktop-small-bold {
@apply text-xs not-italic font-medium;
2024-10-23 16:02:21 +02:00
}
2024-10-25 17:13:01 +02:00
.text-desktop-small {
@apply text-xs not-italic font-normal;
2024-10-23 16:02:21 +02:00
}
2024-10-25 17:13:01 +02:00
.text-desktop-heading-xl {
@apply text-4xl not-italic font-medium;
2024-10-23 16:02:21 +02:00
}
2024-10-25 17:13:01 +02:00
.text-desktop-heading-l {
@apply text-3xl not-italic font-medium;
font-size: 32px;
2024-10-23 16:02:21 +02:00
}
2024-10-25 17:13:01 +02:00
.text-desktop-heading-m {
@apply text-2xl not-italic font-medium;
2024-10-23 16:02:21 +02:00
}
2024-10-25 17:13:01 +02:00
.text-mobile-small-strong {
@apply text-sm not-italic font-medium;
2024-10-23 16:02:21 +02:00
}
2024-10-25 17:13:01 +02:00
.text-mobile-heading-l {
@apply text-2xl not-italic font-medium;
2024-10-23 16:02:21 +02:00
}
2024-10-25 17:13:01 +02:00
.text-mobile-heading-xxl {
@apply text-5xl not-italic font-medium;
2024-10-22 15:18:20 +02:00
}