waow i really like doing config overhauls don't i

+ cursor improvements
This commit is contained in:
ari melody 2025-03-14 16:26:30 +00:00
parent 739390d7f5
commit a797e82a68
Signed by: ari
GPG key ID: 60B5F0386E3DDB7E
3 changed files with 208 additions and 62 deletions

View file

@ -13,9 +13,11 @@
font-size: 10px;
font-weight: bold;
white-space: nowrap;
}
user-select: none;
pointer-events: none;
#cursors i.cursor.click {
color: var(--on-background) !important;
border-color: var(--on-background) !important;
}
#cursors i.cursor .char {
@ -27,7 +29,7 @@
}
#cursors .funchar {
position: fixed;
position: absolute;
margin: 0;
display: block;
@ -37,7 +39,25 @@
font-size: 20px;
font-weight: bold;
color: var(--on-background);
}
#cursors {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: 1000;
overflow: clip;
user-select: none;
pointer-events: none;
}
@media (prefers-color-scheme: light) {
#cursors i.cursor {
filter: saturate(5) brightness(0.8);
background: #fff8;
}
}