diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/images/button-gradient-large.png | bin | 0 -> 266 bytes | |||
-rw-r--r-- | public/images/flying-computer.png | bin | 0 -> 10357 bytes | |||
-rw-r--r-- | public/images/home-grad.png | bin | 0 -> 306 bytes | |||
-rw-r--r-- | public/stylesheets/main.css | 4 | ||||
-rw-r--r-- | public/stylesheets/theme.css | 109 |
5 files changed, 100 insertions, 13 deletions
diff --git a/public/images/button-gradient-large.png b/public/images/button-gradient-large.png Binary files differnew file mode 100644 index 000000000..93ebc6cbc --- /dev/null +++ b/public/images/button-gradient-large.png diff --git a/public/images/flying-computer.png b/public/images/flying-computer.png Binary files differnew file mode 100644 index 000000000..b1e1d59bb --- /dev/null +++ b/public/images/flying-computer.png diff --git a/public/images/home-grad.png b/public/images/home-grad.png Binary files differnew file mode 100644 index 000000000..ff9887a11 --- /dev/null +++ b/public/images/home-grad.png diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index dd37bcf79..d9bdd25a8 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -415,6 +415,10 @@ div#twitter margin: 0 0 1em 1em; } +img.twitter-icon { + vertical-align: middle; +} + .blog_post { margin-bottom: 2em; } diff --git a/public/stylesheets/theme.css b/public/stylesheets/theme.css index f4c258a0f..43042fa75 100644 --- a/public/stylesheets/theme.css +++ b/public/stylesheets/theme.css @@ -56,6 +56,10 @@ body { font-size: 12px; } +body.front { + background: url(/images/home-grad.png) repeat-x 0px 160px; +} + #wrapper { padding-top:160px; } @@ -363,17 +367,8 @@ p.subtitle { margin:0px -6px 20px 0px; } -#search_form input[type=text] { - margin-right:-6px; - font-size: 17px; - color: #555; - border-radius: 3px 0px 0px 3px; - -moz-border-radius: 3px 0px 0px 3px; - border-style: solid; - border-color: #BBB; - border-width: 1px; - width: 250px; - height: 18px; +#advanced-search input[type=text] { + width: auto; } #search_form input[type=submit] { @@ -437,7 +432,6 @@ h2.publicbody_results { border-bottom:1px solid #B3B3B3; padding-bottom:15px; margin-bottom:0px; - padding-top: 15px; margin-top: 0px; } @@ -594,7 +588,8 @@ form input.use-datepicker[type=text] { } form input[type=submit], -a.link_button_green { +a.link_button_green, +a.link_button_green_large { background: url(/images/button-gradient.png); color: white; text-decoration: none; @@ -609,6 +604,13 @@ a.link_button_green { cursor: pointer; } +a.link_button_green_large { + background: url(/images/button-gradient-large.png); + font-size: 22px; + line-height: 22px; + padding-bottom: 7px; +} + @-moz-document url-prefix() { form input[type=submit], a.link_button_green { @@ -735,6 +737,87 @@ div.correspondence { font-size: 13px; } +/* ---------- Frontpage ----------- */ + +#frontpage_splash { + height: 375px; + margin-top: -12px; + margin-bottom: 20px; + width: 100%; + background: url(/images/flying-computer.png) no-repeat 175px bottom; +} + +#frontpage_splash #left_column { + line-height: 40px; + margin-top: 66px; +} + +#frontpage_splash h1 { + margin: 0px 0px 20px 0px; + font-family: 'DeliciousRoman', Arial, sans-serif; + font-size: 39px; + color: #6B3C6A; + font-weight:normal; +} + +#frontpage_splash h1 strong { + font-family: 'DeliciousHeavyRegular', Arial, sans-serif; + font-size: 54px; + color: #93278F; + font-weight: normal; +} + +#frontpage_splash h1 span { + font-family: Georgia; + font-style: italic; + font-weight:normal; + font-size: 25px; + color: #6B3C6A; +} + +#frontpage_splash #right_column { + width: 265px; +} + +#frontpage_splash h2 { + font-size: 26px; + font-weight:normal; + color: #6B3C6A; + font-family:'DeliciousRoman', Arial, sans-serif; + margin-bottom: 10px; + line-height: 28px; +} + +#frontpage_splash h2 strong { + font-size: 31px; + color: #93278F; + font-family:'DeliciousBold', Arial, sans-serif; +} + +#frontpage_splash h2 span { + color: #6B3C6A; + font-style: italic; + font-size: 19px; + font-family: Georgia; +} + +#frontpage_splash #right_column input[type=text] { + width: 180px; +} + +#frontpage_splash #frontpage_search_box { + margin-bottom: 30px; + margin-top: -10px; +} + +#frontpage_splash #frontpage_right_to_know p { + line-height: 20px; +} + +body.front h3 { + font-size: 28px; +} + /* ---------- Calendar theme ----------- */ #ui-datepicker-div.ui-widget { |