forked from jakelazaroff/bkjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (68 loc) · 1.35 KB
/
style.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
/* - - - THEME - - - */
body {
background-color: #100e17;
}
a {
color: #6c4fff;
font-weight: bold;
transition: 0.25s color ease-in-out;
text-decoration-color: rgba(255, 255, 255, 0.1);
}
a:hover {
color: #8e6fff;
}
.reveal {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
font-size: 42px;
font-weight: normal;
line-height: 1.3;
color: rgba(255, 255, 255, 0.8);
}
.reveal .controls {
color: #6c4fff;
}
.reveal .progress {
background: rgba(0, 0, 0, 0.2);
color: #6c4fff;
}
.reveal img,
.reveal video,
.reveal iframe {
display: block;
max-width: 95%;
max-height: 95%;
border-radius: 4px;
}
.reveal pre {
display: block;
text-align: left;
}
.reveal code {
font-family: "Dank Mono", monospace;
text-transform: none;
}
.reveal pre code {
display: block;
padding: 20px;
overflow: auto;
max-height: 480px;
word-wrap: normal;
background-color: rgba(255, 255, 255, 0.1);
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
border-radius: 4px;
font-size: 24px;
}
.reveal section {
top: 0 !important;
}
.type-error {
background-color: transparent;
color: inherit;
text-decoration: underline wavy #ea3355;
}
.side-by-side {
display: grid;
grid-template-columns: 1fr 1fr;
grid-column-gap: 20px;
}