various changes

This commit is contained in:
2025-08-09 07:10:04 -04:00
parent fbd342c6a7
commit 21796e768e
20 changed files with 886 additions and 342 deletions

View File

@@ -106,6 +106,23 @@ pre {
scrollbar-width: none; /* Firefox */
}
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0px 1000px #121212 inset !important; /* match your dark bg */
box-shadow: 0 0 0px 1000px #121212 inset !important;
-webkit-text-fill-color: white !important; /* match your text color */
transition: background-color 5000s ease-in-out 0s;
}
input:focus,
input:invalid {
outline: none; /* or a custom outline */
box-shadow: none;
}
input[type="password"]:focus::placeholder {
color: transparent;
}
/* Remove Safari input shadow on mobile */
input[type="text"],
input[type="email"] {