-
Notifications
You must be signed in to change notification settings - Fork 0
/
slides.css
73 lines (62 loc) · 1.04 KB
/
slides.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
body { font-family: Ubuntu }
code { font-family: Ubuntu Mono }
h1 {
text-align: center;
font-size: 160%;
}
h2 { font-size: 120% }
h3 { font-size: 100% }
.slide > p {
margin-left: 4em;
display: list-item;
}
.slide > ul li {
list-style-type: disc;
/* slidy.css defines ul { margin-left: 1.5em } */
margin-left: 2.5em;
}
.slide img {
float: left;
margin-bottom: 20%;
margin-right: 8%;
max-width: 40%;
}
.slide img.full {
float: none;
margin-left: auto;
margin-right: auto;
max-width: 80%;
display: block;
}
.slide .right {
float: right;
clear: right;
margin-bottom: 8%;
margin-left: 8%;
max-width: 10%;
}
.slide .left-half {
float: left;
margin-bottom: 8%;
margin-right: 8%;
max-width: 40%;
}
.slide .right-half {
float: right;
margin-bottom: 8%;
margin-left: 8%;
max-width: 40%;
}
table caption {
font-variant: small-caps
}
tr.odd {
background: #ddd
}
tr.even {
background: #f2f2f2
}
code.sourceCode.bash:before {
content: "$ ";
color: #95abd0; /* match pre.sourceCode border-color */
}