21 lines
459 B
CSS
21 lines
459 B
CSS
span[class="easy-typing-tabstops"] {
|
|
border-radius: 2px;
|
|
background-color: #87cefa2e;
|
|
outline: #87cefa6e solid 1px;
|
|
}
|
|
|
|
span[class="easy-typing-cursor-widget"] {
|
|
display: inline-block;
|
|
width: 2px;
|
|
height: 1.2em;
|
|
background-color: #1364ceaa;
|
|
position: relative;
|
|
margin: 0;
|
|
vertical-align: text-bottom;
|
|
border-radius: 1px;
|
|
animation: blink 1s step-start 0s infinite;
|
|
}
|
|
|
|
@keyframes blink {
|
|
50% { opacity: 0; }
|
|
} |