blob: 39949321f161db93168f3918aeb465b611691783 (
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
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
|
h1, h2, h3, h4, h5, h6 {
text-align: center;
color: #222;
line-height: 90%;
}
body {
color: #444;
background-color: #EEEEEE;
}
.step {
opacity: 0;
transition: opacity 1s;
}
.step.active {
opacity: 1;
}
.innerStep {
position: absolute;
opacity: 0;
transition: opacity 0.5s;
}
.lastInnerstep {
opacity: 1;
}
div.center {
position: absolute;
left: 0;
right: 0;
margin: auto;
text-align: center;
}
p.center {
top: 50%;
bottom: 50%;
}
table.center {
margin: auto;
}
#boston-example td, th {
padding-left: 1em !important;
padding-right: 1em !important;
}
.hidden {
display: none;
}
.axis path, .axis line {
fill: none;
stroke: rgba(0, 0, 0, 0.87);
stroke-width: 3;
}
.axis text {
font-size: large;
}
#overview { display: none; }
.impress-on-overview .step {
opacity: 1;
cursor: pointer;
}
|