blob: da7efe3da349b0a9b7d75a1b1c4b1273c570f794 (
plain)
1
2
3
4
5
6
7
8
9
10
|
.htmlAnnotation {
pointer-events: all;
user-select: none;
position: absolute;
background-color: rgba(146, 245, 95, 0.467);
transition: opacity 0.5s;
&:hover {
cursor: pointer;
}
}
|