27 lines
375 B
CSS
27 lines
375 B
CSS
@layer base {
|
|
.prose {
|
|
& > * {
|
|
@apply mt-6;
|
|
}
|
|
|
|
h1 {
|
|
@apply font-bold text-3xl sm:text-5xl text-gray-900;
|
|
}
|
|
|
|
h2 {
|
|
@apply font-bold text-2xl sm:text-4xl text-blue-700;
|
|
|
|
h1 ~ & {
|
|
@apply mt-4;
|
|
}
|
|
|
|
p ~ & {
|
|
@apply mt-10;
|
|
}
|
|
}
|
|
|
|
address, p {
|
|
@apply not-italic text-lg max-w-240;
|
|
}
|
|
}
|
|
}
|