diff options
-rw-r--r-- | css/popup.css | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/css/popup.css b/css/popup.css index 3de8717..83311af 100644 --- a/css/popup.css +++ b/css/popup.css @@ -6,7 +6,7 @@ body { } h1 { - margin-top:-4px; + margin-top:4px; font-size:22px; font-weight: bold; letter-spacing: 1.5px; @@ -19,6 +19,7 @@ h1 span { } button { + display:block; width:90%; margin:5px auto !important; @@ -35,5 +36,14 @@ label { display:block; width:85%; text-align:left; - margin:4px auto; -}
\ No newline at end of file + margin:6px auto; + font-size:12px !important; +} + +/* Firefox only */ +@supports (-moz-appearance:none) { + label input { + position: relative; + top:1px; + } +} |