diff options
author | Gitoffthelawn <Gitoffthelawn@users.noreply.github.com> | 2015-05-12 15:49:53 -0700 |
---|---|---|
committer | Gitoffthelawn <Gitoffthelawn@users.noreply.github.com> | 2015-05-12 15:49:53 -0700 |
commit | 1536d7af581c372783ce40e3f8768f871f1c4bf3 (patch) | |
tree | d5c08af888b52490202e605db3b233b0606ae35e | |
parent | f9f13902bb68ca1edcbd70b5ec6687382532054a (diff) |
Update redirector.css
Added Segoe UI font for windows, while keeping Tahoma for OSX, and sans-serif for other OS. Cleaned up code just a touch.
-rw-r--r-- | chrome/css/redirector.css | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/chrome/css/redirector.css b/chrome/css/redirector.css index fd07800..2a29e98 100644 --- a/chrome/css/redirector.css +++ b/chrome/css/redirector.css @@ -2,7 +2,7 @@ /* entire page */ body { - font-family: Tahoma, Arial, sans-serif; + font-family: Segoe UI, Tahoma, sans-serif; font-size: 90%; background: linear-gradient(to bottom, #afcffe, #fff); background-attachment: fixed; @@ -11,12 +11,12 @@ body { /* main header */ h1 { margin-top: 25px; - margin-bottom:0; + margin-bottom: 0px; text-align: center; font-size: 280%; line-height: 90%; font-style: italic; - color:#222; + color: #222; } /* sub-header */ @@ -67,7 +67,8 @@ h5 { /* rule within each cell */ .disabled { - font-weight: bold; color: red; + font-weight: bold; + color: red; } .description { @@ -123,7 +124,8 @@ label, input { } .button-row { - text-align: center; display: block !important; + display: block !important; + text-align: center; } button { @@ -132,11 +134,13 @@ button { /* New (and Edit) Redirect dialog box */ #redirect-form > div { - margin-top: 3px; display: table-row; + display: table-row; + margin-top: 3px; } #redirect-form > div > label { - text-align: right; padding: 6px; + text-align: right; + padding: 6px; } #redirect-form > div > input[type='text'] { |