blob: 1de60ffed3a22db6423ca1ed98f11271899234d8 (
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;
}
}
|