ff-webpage/app/assets/app.css

76 lines
801 B
CSS
Raw Permalink 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
* {
2025-07-26 13:11:53 +02:00
font-family: "GeneralSans-Medium";
}
h1,
h2,
h3,
h4,
h5,
h6,
.conthrax {
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;
2025-07-26 13:11:53 +02:00
font-family: inherit;
2024-11-01 14:15:09 +01:00
}
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;
}
2025-07-26 13:11:53 +02:00
h4 {
@apply text-base;
}