返回 slidev
layout.css
1 :root {
2 /* default theme color */
3 /* can be overrided by uses `themeConfig` option */
4 --slidev-theme-primary: #5d8392;
5 }
6
7 .slidev-layout.cover,
8 .slidev-layout.intro {
9 @apply h-full grid;
10
11 h1 {
12 @apply text-6xl leading-20;
13 }
14
15 h1 + p {
16 @apply -mt-2 opacity-50 mb-4;
17 }
18
19 p + h2,
20 ul + h2,
21 table + h2 {
22 @apply mt-10;
23 }
24 }
25
25 lines CSS