28 lines
528 B
CSS
28 lines
528 B
CSS
.cursor-dot,
|
|
.cursor-dot-outline {
|
|
pointer-events: none;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
opacity: 0;
|
|
transform: translate(-50%, -50%);
|
|
transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
|
|
z-index: 99;
|
|
}
|
|
|
|
.cursor-dot {
|
|
font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "Font Awesome 5 Brands";
|
|
font-weight: 900;
|
|
color: rgb(46, 46, 46);
|
|
font-size: 16px;
|
|
}
|
|
|
|
.no-cursor {
|
|
cursor: none;
|
|
}
|
|
|
|
.no-cursor a,
|
|
.no-cursor div,
|
|
.no-cursor span {
|
|
cursor: none;
|
|
} |