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;
}