mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 15:00:00 +00:00
73 lines
891 B
Text
73 lines
891 B
Text
.main-content {
|
|
& h1 {
|
|
@apply text-3xl;
|
|
@apply font-semibold;
|
|
@apply leading-none;
|
|
@apply mb-4;
|
|
}
|
|
|
|
& h2 {
|
|
@apply text-2xl;
|
|
@apply font-semibold;
|
|
@apply mt-2;
|
|
@apply mb-1;
|
|
}
|
|
|
|
& h3 {
|
|
@apply text-xl;
|
|
@apply font-semibold;
|
|
@apply mb-1;
|
|
}
|
|
|
|
& p {
|
|
@apply mb-4;
|
|
}
|
|
|
|
& a:not([class]),
|
|
& a[class=""] {
|
|
@apply link;
|
|
}
|
|
|
|
& ul:not([class]) {
|
|
@apply list-disc;
|
|
@apply mb-4;
|
|
|
|
& li {
|
|
@apply ml-6;
|
|
}
|
|
}
|
|
|
|
& ol:not([class]) {
|
|
@apply list-decimal;
|
|
@apply mb-4;
|
|
|
|
& li {
|
|
@apply ml-6;
|
|
}
|
|
}
|
|
|
|
& code:not([class]) {
|
|
@apply inline-code;
|
|
}
|
|
|
|
& .expandable:not(.wide) {
|
|
max-width: 600px;
|
|
}
|
|
}
|
|
|
|
@screen lg {
|
|
.main-content {
|
|
& h1 {
|
|
@apply text-5xl;
|
|
}
|
|
}
|
|
}
|
|
|
|
@screen xl {
|
|
.main-content {
|
|
& a:not([class]),
|
|
& a[class=""] {
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|