3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-19 15:30:00 +00:00
zeppelin/dashboard/src/style/content.pcss

74 lines
891 B
Text
Raw Normal View History

2019-10-10 22:55:31 +03:00
.main-content {
& h1 {
2021-04-10 14:03:42 +03:00
@apply text-3xl;
2019-10-10 22:55:31 +03:00
@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;
2019-10-10 22:55:31 +03:00
@apply font-semibold;
@apply mb-1;
}
& p {
@apply mb-4;
}
2019-10-25 21:45:18 +03:00
& a:not([class]),
& a[class=""] {
2019-10-10 22:55:31 +03:00
@apply link;
}
& ul:not([class]) {
@apply list-disc;
@apply mb-4;
& li {
@apply ml-6;
}
}
2019-10-25 21:45:18 +03:00
& ol:not([class]) {
@apply list-decimal;
@apply mb-4;
& li {
@apply ml-6;
}
}
2019-10-10 22:55:31 +03:00
& code:not([class]) {
@apply inline-code;
}
& .expandable:not(.wide) {
2019-10-10 22:55:31 +03:00
max-width: 600px;
}
}
2019-10-25 21:45:18 +03:00
2021-04-10 14:03:42 +03:00
@screen lg {
.main-content {
& h1 {
@apply text-5xl;
}
}
}
2019-10-25 21:45:18 +03:00
@screen xl {
.main-content {
& a:not([class]),
& a[class=""] {
white-space: nowrap;
}
}
}