Fixes for input stylings

This commit is contained in:
Tamius Han 2019-02-28 23:55:20 +01:00
parent 80c484431d
commit 8253b6e8a5
3 changed files with 9 additions and 13 deletions

View File

@ -96,14 +96,7 @@ body {
.dup_keybinds{
background-color: #720 !important;
}
input[type=text]{
font-size: 1em;
padding-left: 0.6em;
margin-left: 1em;
width: 2em;
background-color: #000;
border: 1px #442 solid;
}
.uw_shortcuts_line{
padding-top: 0.25em;
padding-left: 5em;

View File

@ -4,7 +4,8 @@ $text-dark: #666;
$primary-color: #fb772a;
$secondary-color: #e70c0c;
$input-background: #242424;
$input-background: #141414;
$input-border: #4e3527;
$page-background: #101010;
$background-primary: #101010;

View File

@ -85,13 +85,15 @@ body {
/* INPUT FORMATTING */
input[type="number"] {
// border: 1px solid #322;
background-color: transparent;
input[type="number"], input[type="text"], input {
outline: none;
background-color: $input-background;
color: $text-normal;
padding: 0.1rem;
padding-top: 0.1rem;
padding-top: 0.2rem;
padding-bottom: 0.1rem;
margin-left: 1rem;
border: 1px solid $input-border;
}