style selection

This commit is contained in:
Georgi Gardev
2023-11-18 19:56:33 +02:00
parent 755335b1cd
commit 7b72103b9c
3 changed files with 8 additions and 0 deletions

View File

@@ -7,6 +7,7 @@
background-size: cover;
z-index: -1;
object-fit: cover;
user-select: none;
}
.Overlay {

View File

@@ -32,6 +32,7 @@
.Search::placeholder {
color: var(--color-text);
color: rgba(255, 255, 255, 0.4);
user-select: none;
}
.Search:focus-within {

View File

@@ -4,6 +4,12 @@
--color-bright: #eee;
}
::selection {
color: white;
background-color: black;
}
body {
font-family: 'Helvetica Neue', sans-serif;
}