33 lines
390 B
CSS
33 lines
390 B
CSS
|
@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;
|
||
|
}
|