diff options
Diffstat (limited to '')
-rw-r--r-- | static/css/style.css | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/static/css/style.css b/static/css/style.css index 5b232b3..f2844f1 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -293,7 +293,23 @@ input.search-submit { margin-bottom: 0.5em; } -input[type=submit] { +/* Forms */ + +form input[value], form select { + width: 170px; + padding: 1px; + margin-left: 4px; + box-sizing: border-box; + font-size: 100%; + font-family: inherit; + height: 25px; +} + +form input[type=checkbox] { + width: initial; +} + +form input[type=submit] { margin-top: 10px; } |