-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (47 loc) · 928 Bytes
/
Copy pathstyle.css
File metadata and controls
54 lines (47 loc) · 928 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* 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). 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 .tile {
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.slidev-layout h4.tile-header {
color: #1e3a8a;
font-weight: 600;
font-size: 0.95rem;
margin: 0;
}
.slidev-layout p,
p {
color: #6b7280;
margin-bottom: 1rem;
}
.slidev-layout code,
code {
color: #9333ea;
background: #f3f4f6;
padding: 2px 6px;
border-radius: 4px;
}
.slidev-layout .tile-card {
background: #f3f4f6;
border-radius: 6px;
padding: 0.4rem 0.5rem;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}