blob: 7a67c29bfb2ab0b1cc5fc1c86fb94583623945e7 (
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
|
.previewCursor {
color: black;
position: absolute;
transform-origin: left top;
top: 0;
left:0;
pointer-events: none;
}
.previewCursorView {
top: 0;
left:0;
position: absolute;
width:100%;
height:100%;
}
//this is an animation for the blinking cursor!
// @keyframes blink {
// 0% {opacity: 0}
// 49%{opacity: 0}
// 50% {opacity: 1}
// }
// #previewCursor {
// animation: blink 1s infinite;
// }
|