ff-webpage/assets/app.css

45 lines
531 B
CSS
Raw Normal View History

2024-10-30 14:02:47 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
* {
font-family: "ConthraxSemiBold";
}
html,
body {
2024-11-01 13:15:09 +00:00
@apply bg-white text-black w-full min-h-screen;
2024-10-30 14:02:47 +00:00
}
[primary] {
@apply bg-primary text-white;
}
2024-11-01 13:15:09 +00:00
a {
@apply cursor-pointer;
}
a[primary-link] {
@apply text-xl;
}
a[primary-link].active {
2024-10-30 14:02:47 +00:00
@apply underline;
}
2024-11-01 13:15:09 +00:00
a[primary-sublink] {
@apply text-xl p-2;
}
a[primary-sublink].active {
2024-10-30 14:02:47 +00:00
@apply bg-white text-primary;
}
[lightgray] {
@apply bg-lightgray;
}
[darkgray] {
@apply bg-darkgray text-white;
}