18 lines
296 B
CSS
18 lines
296 B
CSS
|
|
@layer base {
|
||
|
|
body {
|
||
|
|
@apply text-slate-800 bg-orange-50 text-lg;
|
||
|
|
}
|
||
|
|
h1 {
|
||
|
|
@apply text-4xl mb-2;
|
||
|
|
}
|
||
|
|
h2 {
|
||
|
|
@apply text-2xl underline decoration-amber-900 decoration-4 mt-6 block;
|
||
|
|
}
|
||
|
|
main {
|
||
|
|
@apply p-4;
|
||
|
|
}
|
||
|
|
p {
|
||
|
|
@apply mt-3
|
||
|
|
}
|
||
|
|
}
|