diff options
author | SimonBrazell <simon@brazell.com.au> | 2020-03-21 20:34:32 +1100 |
---|---|---|
committer | SimonBrazell <simon@brazell.com.au> | 2020-03-21 20:34:32 +1100 |
commit | abb1115b58ea2c48031eeef20a983b4e7fed918f (patch) | |
tree | b3380fdb6df02e36e24f492d3592f4572e6ff9e6 /pages/styles.css | |
parent | Add 'Always proxy video' as a settings & avoid youtube-dl.org redirects (diff) | |
download | libredirect-abb1115b58ea2c48031eeef20a983b4e7fed918f.zip |
Address issues #21, #22, #23, #24, #25 & #26
Diffstat (limited to '')
-rw-r--r-- | pages/styles.css | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/pages/styles.css b/pages/styles.css index 89ae5a83..a68d9bbc 100644 --- a/pages/styles.css +++ b/pages/styles.css @@ -12,9 +12,13 @@ body { color: var(--text-secondary); margin: 0; + background-color: var(--dark-grey); +} + +.popup { max-width: 400px; min-width: 300px; - background-color: var(--dark-grey); + overflow: hidden; } header { @@ -80,7 +84,7 @@ footer a.button { /* Elements */ -input[type=url] { +input[type=url], select { width: 100%; margin-bottom: 5px; } @@ -148,6 +152,10 @@ input:checked+label:after { transition-duration: 0.4s; } +.button * { + vertical-align: middle; +} + .button:hover { background-color: var(--active); color: #fff; @@ -168,4 +176,3 @@ input[type="url"]:invalid { .margin-bottom { margin-bottom: 20px; } - |