-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
71 lines (65 loc) · 1.11 KB
/
main.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
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100;200;300;400&display=swap");
html, body {
font-family: "JetBrains Mono", monospace;
padding: 0px;
margin: 0px;
overflow-x: hidden;
scroll-behavior: smooth;
}
html *::selection, body *::selection {
background: rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar {
width: 0;
/* Remove scrollbar space */
background: transparent;
/* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
background: #FF0000;
}
.Slide {
white-space: nowrap;
}
.Slide .Slide-Title {
text-align: center;
padding: 5vw 2vw 0vw 2vw;
}
.Slide .Slide-Content {
text-align: left;
padding: 0vw 3vw;
}
.Importance {
color: indianred;
}
@keyframes FadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes FadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes Typing {
from {
width: 0%;
}
to {
width: 100%;
}
}
.Type {
overflow: hidden;
white-space: nowrap;
animation: Typing 1s steps(45);
}
/*# sourceMappingURL=main.css.map */