17 lines
295 B
CSS
17 lines
295 B
CSS
@layer base {
|
|
body {
|
|
@apply text-slate-800 text-lg bg-gray-700;
|
|
}
|
|
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
|
|
}
|
|
}
|