25 lines
350 B
CSS
25 lines
350 B
CSS
:root {
|
|
/* default theme color */
|
|
/* can be overrided by uses `themeConfig` option */
|
|
--slidev-theme-primary: #5d8392;
|
|
}
|
|
|
|
.slidev-layout.cover,
|
|
.slidev-layout.intro {
|
|
@apply h-full grid;
|
|
|
|
h1 {
|
|
@apply text-6xl leading-20;
|
|
}
|
|
|
|
h1 + p {
|
|
@apply -mt-2 opacity-50 mb-4;
|
|
}
|
|
|
|
p + h2,
|
|
ul + h2,
|
|
table + h2 {
|
|
@apply mt-10;
|
|
}
|
|
}
|