blob: 58acdb6fc830a1acf59b56470cb5e4316a2853ce (
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
|
.container {
display: inline-block;
vertical-align: top;
overflow: hidden;
}
.fragment.write-effect {
display: inline-block;
overflow: hidden;
border-right: .15em solid orange;
white-space: nowrap;
width: 0%;
}
.fragment.write-effect.visible {
animation: typing 1s forwards;
}
@keyframes typing {
from { width: 0% }
to { width: 100% }
}
#bubble-chart {
display: block;
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
|