-
Notifications
You must be signed in to change notification settings - Fork 0
/
slide.css
89 lines (73 loc) · 1.31 KB
/
slide.css
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* @theme slide */
@import 'default';
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@200;300;400;500;600;700&display=swap');
section {
background-image: url("https://kitsne241.github.io/md-style/light-background.png");
background-size: cover;
}
section.title {
color: #666666;
text-align: end;
}
section.title h1 {
color: #006496;
text-align: start;
padding: 0;
margin: 0;
}
section {
font-family: Avenir, "M+ 1c";
color: #333333;
letter-spacing: 0.1em;
}
h1 {
font-weight: 400;
letter-spacing: 0.2em;
color: #006496;
padding: 0;
margin: 0;
margin-bottom: 20px;
}
hr {
height: 0px;
border-top: 3px solid #000000;
width: 102%;
align-self: center;
padding: 0;
margin: 6px 0;
}
em {
color: #00a00d;
font-style: normal;
font-weight: 500;
}
blockquote {
margin: 0;
padding-right: 0;
}
section::after {
content: attr(data-marpit-pagination) " / " attr(data-marpit-pagination-total);
}
@media (prefers-color-scheme: dark) {
section {
background-image: url("https://kitsne241.github.io/md-style/dark-background.png");
}
section.title {
color: #BBBBBB;
}
section.title h1 {
color: #e5a64e;
}
section {
color: #BBBBBB;
}
h1 {
color: #e5a64e;
}
hr {
border-top: 3px solid #BBBBBB;
}
em {
color: #FFCC44;
}
}