30 lines
505 B
CSS
30 lines
505 B
CSS
|
.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%;
|
||
|
}
|