ff-webpage/assets/app.css

33 lines
390 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 {
@apply bg-white text-black;
}
[primary] {
@apply bg-primary text-white;
}
.primary-link-active {
@apply underline;
}
.primary-sublink-active {
@apply bg-white text-primary;
}
[lightgray] {
@apply bg-lightgray;
}
[darkgray] {
@apply bg-darkgray text-white;
}