summaryrefslogtreecommitdiff
path: root/index.css
blob: a3ca9975c0827b36111d54a285eec3e7061cddd5 (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
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;
}

.center {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
p.center {
    top: 50%;
    bottom: 50%;
}
table.center {
    margin: auto;
}

.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;
}