blob: f2ab2f3be266cfc86b6a724957abd5809ecbad35 (
plain)
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
|
td {
padding-bottom: 5px;
padding-top: 5px;
}
td.first {
border-right: 2px solid #000;
padding-right: 5px;
}
td:not(.first) {
text-align: center;
}
.column:first-of-type {float:left}
.column:last-of-type {float:right}
.split-40 .column:first-of-type {width: 65%}
.split-40 .column:last-of-type {width: 35%}
.remark-slide-number {
opacity: 0.0;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 80%;
}
|