diff options
Diffstat (limited to 'website/index.css')
-rw-r--r-- | website/index.css | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/website/index.css b/website/index.css index b70c52b7..c3a7697b 100644 --- a/website/index.css +++ b/website/index.css @@ -13,7 +13,7 @@ h1 { text-align: center; } -.buttonBar a { +#buttonBar a.js { color: black; text-decoration: none; } @@ -21,6 +21,10 @@ h1 { .buttonBar { -webkit-border-top-right-radius: 15px 15px; -webkit-border-top-left-radius: 15px 15px; + -moz-border-radius-topright: 15px; + -moz-border-radius-topleft: 15px; + border-top-right-radius: 15px 15px; + border-top-left-radius: 15px 15px; background-image: url(buttonbar.jpg); width: 800px; height: 170px; @@ -29,6 +33,10 @@ h1 { .endBar { -webkit-border-bottom-right-radius: 15px 15px; -webkit-border-bottom-left-radius: 15px 15px; + -moz-border-radius-bottomright: 15px; + -moz-border-radius-bottomleft: 15px; + border-bottom-right-radius: 15px 15px; + border-bottom-left-radius: 15px 15px; background-image: url(buttonbar.jpg); width: 800px; height: 30px; @@ -69,6 +77,10 @@ h1 { height: 56px; } +code { + font-weight: bold; +} + .download img { margin: 4px 20px 4px 16px; float: left; @@ -81,6 +93,27 @@ h1 { font-weight: bold; } +#downloadInfo { + display: block; + position: absolute; + left: 50%; + top: 35px; + font-size: 16px; + margin-left: -400px; +} + +#downloadInfo p { + margin: 12px; +} + +.downloadActions { + margin-top: 16px; + margin-left: 32px; +} +.downloadActions a { + display: block; +} + .proxyVideo { width: 800px; height: 480px; |