24 lines
508 B
CSS
24 lines
508 B
CSS
h1 {
|
|
@apply bg-hSurface text-hOnSurface;
|
|
@apply py-5 flex items-center justify-center uppercase;
|
|
@apply font-sans font-semibold text-xl;
|
|
@apply tracking-widest;
|
|
@apply px-2;
|
|
}
|
|
|
|
h2 {
|
|
@apply bg-hSurface text-hOnSurface;
|
|
@apply font-sans font-semibold text-lg;
|
|
@apply tracking-widest;
|
|
@apply py-2;
|
|
@apply px-2;
|
|
}
|
|
|
|
p, ul {
|
|
@apply bg-hSurface text-hOnSurface;
|
|
@apply font-mono font-normal text-base;
|
|
@apply tracking-wide;
|
|
@apply py-1;
|
|
@apply px-2;
|
|
}
|