1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
.previewCursor { color: black; position: absolute; transform-origin: left top; pointer-events: none; } //this is an animation for the blinking cursor! @keyframes blink { 0% {opacity: 0} 49%{opacity: 0} 50% {opacity: 1} } #previewCursor { animation: blink 1s infinite; }