29 lines
486 B
CSS
29 lines
486 B
CSS
|
|
.text_animation {
|
|
/* display: none; */
|
|
position: relative;
|
|
font-size: 20px;
|
|
letter-spacing: 1px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.text_animation .letter {
|
|
display: inline-block;
|
|
/* opacity: 0; */
|
|
/* color: white; */
|
|
}
|
|
|
|
.text_animation .cursor {
|
|
display: inline-block;
|
|
position: absolute;
|
|
/* top: 0; */
|
|
/* bottom: 0; */
|
|
width: 0.55em;
|
|
height: 1em;
|
|
/* background: #f5f5f5; */
|
|
/* color: white; */
|
|
/* background: #ffffff; */
|
|
/* background: green; */
|
|
z-index: 1;
|
|
}
|