waow i really like doing config overhauls don't i
+ cursor improvements
This commit is contained in:
parent
739390d7f5
commit
a797e82a68
3 changed files with 208 additions and 62 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue