-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
35 lines (31 loc) · 702 Bytes
/
Copy pathstyle.css
File metadata and controls
35 lines (31 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
* Demo deck palette for example.md.
* Loaded globally by Slidev because it sits next to example.md (Slidev auto-imports
* style.css from the project root), so the heading/text styles apply on every slide
* rather than only the slide a <style> block would be scoped to. Not included in the
* published addon — see package.json#files.
*/
.slidev-layout h1,
h1 {
color: #335de4;
font-weight: bold;
margin-bottom: 0;
}
.slidev-layout h2,
h2 {
color: #1e3a8a;
font-weight: bold;
margin-bottom: 1rem;
}
.slidev-layout p,
p {
color: #6b7280;
margin-bottom: 1rem;
}
.slidev-layout code,
code {
color: #9333ea;
background: #f3f4f6;
padding: 2px 6px;
border-radius: 4px;
}