oh wow i was meant to push this a long time ago

This commit is contained in:
sky
2026-06-11 23:04:06 -04:00
parent e12d4d3017
commit 0605271327
7 changed files with 141 additions and 113 deletions

View File

@ -42,7 +42,7 @@ body {
overflow-y: hidden;
top: 0;
}
input[type=text], input[type=password] {
input {
width: 70%;
border-style: solid;
border-width: 2px;
@ -58,13 +58,13 @@ input[type=text], input[type=password] {
font-size: 20px;
text-shadow: var(--color-1) 0 0 10px;
}
input[type=text]:focus, input[type=password]:focus {
input:focus {
filter:brightness(1.25) !important;
}
input[type=text]:hover, input[type=password]:hover {
input:hover {
filter:brightness(1.1);
}
input[type=text]::placeholder, input[type=password]::placeholder {
input::placeholder {
color: color-mix(in srgb, var(--text-color) 20%, #00000000 80%);
text-shadow: color-mix(in srgb, var(--text-color) 40%, #00000000 60%) 0 0 10px;
}

View File

@ -1,6 +1,6 @@
section {
min-width: 20%;
height: 400px;
height: 420px;
padding: 8px;
margin: 16px;
background-color: color-mix(in srgb, var(--color-2) 40%, #00000000 60%);
@ -27,6 +27,28 @@ sections {
margin: 6px;
}
#hiddenGamesList {
width: min(280px, 90%);
height: 200px;
overflow-y: auto;
border: 1px solid color-mix(in srgb, var(--color-1) 50%, #00000000 50%);
border-radius: 12px;
padding: 8px;
margin: 8px 0;
}
.hidden-game-row {
display: flex;
align-items: center;
gap: 8px;
margin: 4px 0;
width: 100%;
}
#hiddenGamesSearch {
width: min(280px, 90%);
}
@-moz-document url-prefix() {
section {
backdrop-filter: blur(0);
@ -36,4 +58,4 @@ sections {
body[fast] section {
background-color: color-mix(in srgb, var(--color-2) 70%, #000000 30%);
backdrop-filter: blur(0);
}
}