aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm/PreviewCursor.scss
blob: 7d6d5aaabc5a41ff0234f144ee1125f3a6729577 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.previewCursor {
    color: black;
    position: absolute;
    transform-origin: left top;
    pointer-events: none;
}
.previewCursorView {
    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;
}