forked from hackmdio/codimd
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathslide-bytecode.css
More file actions
105 lines (90 loc) · 2.1 KB
/
Copy pathslide-bytecode.css
File metadata and controls
105 lines (90 loc) · 2.1 KB
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
.reveal,
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5 {
color: #1a1a1a;
}
.reveal h6,
.reveal .slides section:first-child > div > h6 {
color: #23be87 !important;
text-transform: uppercase;
margin-bottom: 40px;
font-size: .6em;
}
.reveal h1,
.reveal h2 {
position: relative;
margin-bottom: 0.8em;
}
.reveal h1::before,
.reveal h2::before {
content: ' ';
background-color: black;
position: absolute;
width: 100px;
height: 24px;
left: -128px;
top: calc(50% - 12px);
}
.reveal .slides {
padding: 40px 100px;
text-align: left !important;
top: 0 !important;
right: 0 !important;
bottom: 150px !important;
left: 0 !important;
transform: none !important;
width: 100% !important;
}
.reveal .slides > section{
width: unset;
}
.reveal table {
margin: unset;
}
.reveal blockquote {
margin: 20px 0 20px 40px;
}
.backgrounds .slide-background {
background-color: #ffffff !important;
transition: none !important;
}
.backgrounds .slide-background:not(:first-child) .slide-background-content {
background-size: 100px;
background-position: bottom left;
width: 100px;
height: 100px;
background-size: contain !important;
bottom: 14px;
left: 60px; /* TODO: Improve responsiveness */
background-image: url('https://bytecode.nl/cdn/icon-black.png');
}
/* TODO: Slide animations? */
.backgrounds .slide-background:first-child {
background-color: #1a1a1a !important;
}
.reveal .slides section:first-child {
top: 250px !important;
}
.reveal .slides section:first-child,
.reveal .slides section:first-child > div > * {
color: #ffffff !important;
}
.reveal .slides section:first-child > div > h1 {
text-transform: uppercase;
}
.backgrounds .slide-background:first-child .slide-background-content {
background-size: 240px;
background-position: top left;
width: 240px;
height: 100px;
background-size: contain !important;
top: 35px;
left: 70px; /* TODO: Improve responsiveness */
background-image: url('https://bytecode.nl/cdn/logo-white.png');
}
/* Hide scrollbar in chrome */
html { overflow: scroll; overflow-x: hidden; }
::-webkit-scrollbar { width: 0px; }