2022-01-12 15:24:24 +00:00
|
|
|
#cursor {
|
|
|
|
position: fixed;
|
|
|
|
width: 18px;
|
|
|
|
height: 18px;
|
|
|
|
background: #ffffffcc;
|
2022-05-22 04:02:03 +00:00
|
|
|
border-radius: 8px;
|
2022-01-12 15:24:24 +00:00
|
|
|
opacity: 0.25;
|
2022-05-22 05:50:08 +00:00
|
|
|
z-index: 99999999;
|
2022-01-12 15:24:24 +00:00
|
|
|
pointer-events: none;
|
|
|
|
transition: 0.2s ease-in-out;
|
|
|
|
transition-property: background, opacity, transform;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cursor.hidden {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cursor.hover {
|
|
|
|
opacity: 0.1;
|
2022-05-29 11:39:58 +00:00
|
|
|
/* transform: scale(1.2); */
|
2022-01-12 15:24:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#cursor.active {
|
|
|
|
opacity: 0.5;
|
|
|
|
transform: scale(0.5);
|
|
|
|
}
|