diff --git a/css/base.css b/css/base.css index 37ea9ff..441b33d 100644 --- a/css/base.css +++ b/css/base.css @@ -30,9 +30,9 @@ a, th, td, li { - font-family: 'Hack Nerd Font Mono', Hack, sans-serif; - padding: 0; - margin: 0; + font-family: 'Hack Nerd Font Mono', Hack, sans-serif !important; + padding: 0 !important; + margin: 0 !important; } h1 { @@ -360,22 +360,24 @@ i:hover { input, input:is(:-webkit-autofill, :autofill), textarea { - border-radius: 12px; - width: 100%; - padding: 15px; - margin: 15px 15px 15px 0px; - box-sizing: border-box; - transition-duration: 500ms; - resize: none; + border-radius: 12px !important; + width: 100% !important; + padding: 15px !important; + margin: 15px 15px 15px 0px !important; + box-sizing: border-box !important; + transition-duration: 500ms !important; + resize: none !important; } input:focus, +input:is(:-webkit-autofill, :autofill):focus, textarea:focus, input:hover, +input:is(:-webkit-autofill, :autofill):hover, textarea:hover { - border: 3px solid orange; - box-shadow: 0 2px 4px 0 rgba(255, 165, 0, 0.3), 0 3px 8px 0 rgba(255, 165, 0, 0.7); - outline: none; + border: 3px solid orange !important; + box-shadow: 0 2px 4px 0 rgba(255, 165, 0, 0.3), 0 3px 8px 0 rgba(255, 165, 0, 0.7) !important; + outline: none !important; } textarea { diff --git a/css/dark.css b/css/dark.css index 4bd2c48..a1c1414 100644 --- a/css/dark.css +++ b/css/dark.css @@ -72,18 +72,13 @@ table tr { } input, +input:is(:-webkit-autofill, :autofill), textarea { background-color: transparent; color: white; border: 3px solid white; } -input:is(:-webkit-autofill, :autofill) { - background-color: transparent; - color: white; - border: 3px solid white; -} - .checkmark { border: 2px solid white; } diff --git a/css/light.css b/css/light.css index 1d57b03..2abc9c6 100644 --- a/css/light.css +++ b/css/light.css @@ -72,18 +72,13 @@ table tr { } input, +input:is(:-webkit-autofill, :autofill), textarea { background-color: transparent; color: black; border: 3px solid black; } -input:is(:-webkit-autofill, :autofill) { - background-color: transparent; - color: black; - border: 3px solid black; -} - .checkmark { border: 2px solid black; }