-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
50 lines (44 loc) · 1.17 KB
/
custom.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
/* Make sure code appearing in headers is not capitalized */
.reveal h1 code, .reveal h2 code, .reveal h3 code, .reveal h4 code {
text-transform: none;
}
/* Allow code boxes to be longer */
.reveal pre code {
max-height: 550px;
}
/* And also wider */
.reveal pre {
width: 110%;
}
/* Remove the border and the background from images */
.reveal section img {
background:none;
border:none;
box-shadow:none;
}
/* Hide navigation arrows, which don't add anything since we don't even use transitions */
.reveal .controls .navigate-down,
.reveal .controls .navigate-up,
.reveal .controls .navigate-right,
.reveal .controls .navigate-left {
/*display: none;*/
}
/* Used to write unordered lists with custom images for good and bad points */
li.strength {
margin: 0;
padding: 36px 0 36px 84px;
list-style: none;
background-image: url("img/green-checkmark.png");
background-repeat: no-repeat;
background-position: left center;
background-size: 40px;
}
li.weakness {
margin: 0;
padding: 36px 0 36px 84px;
list-style: none;
background-image: url("img/red-x.png");
background-repeat: no-repeat;
background-position: left center;
background-size: 40px;
}