ff-webpage/assets/app.css

61 lines
673 B
CSS
Raw Normal View History

2025-04-21 13:30:06 +02:00
@import "tailwindcss";
@theme {
--color-primary: #b22222;
--color-darkgray: #2b292a;
--color-lightgray: #e3dfdf;
}
2024-10-30 15:02:47 +01:00
* {
font-family: "ConthraxSemiBold";
}
html,
body {
2024-11-01 14:15:09 +01:00
@apply bg-white text-black w-full min-h-screen;
2024-10-30 15:02:47 +01:00
}
[primary] {
@apply bg-primary text-white;
}
2024-11-01 14:15:09 +01:00
a {
@apply cursor-pointer;
}
a[primary-link] {
@apply text-xl;
}
a[primary-link].active {
2024-10-30 15:02:47 +01:00
@apply underline;
}
2024-11-01 14:15:09 +01:00
a[primary-sublink] {
@apply text-xl p-2;
}
a[primary-sublink].active {
2024-10-30 15:02:47 +01:00
@apply bg-white text-primary;
}
[lightgray] {
@apply bg-lightgray;
}
[darkgray] {
@apply bg-darkgray text-white;
}
h1 {
2025-02-14 13:57:55 +01:00
@apply text-2xl;
}
h2 {
@apply text-xl;
}
2025-02-14 13:57:55 +01:00
h3 {
@apply text-lg;
}