From 240e683fdda9437a75a150b5e1ad1279178673d3 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Wed, 24 Jun 2009 18:47:41 +0200 Subject: [PATCH] Add special CSS for the Exodus home page. --- static/exodus/css/home.css | 57 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 static/exodus/css/home.css diff --git a/static/exodus/css/home.css b/static/exodus/css/home.css new file mode 100644 index 0000000..3cabfcf --- /dev/null +++ b/static/exodus/css/home.css @@ -0,0 +1,57 @@ +#page, #footer{ + /* Center the page and footer, just like the header */ + width:1024px; + margin-right: auto; + margin-left: auto; +} + +.worldmap { + /* End up under the menu bar */ + clear:both; + float:left; + width:694px; + height:464px; + margin-top:10px; +} + +/* Container for mapdetail and info*/ +.ChangableContent { +} + +/* Don't let the p tags moin generates influence the positioning */ +.closeup p, .summary p { + margin: 0; +} + +.closeup, .summary { + float: left; + margin-top:30px; + width:285px; + margin-left:10px; +} + +/* Window with map detail */ +.closeup { + width:280px; + height:239px; + border:3px double #cc8900; + background-repeat:no-repeat; + background-color:#5a1800; +} +/* Window with textual info */ +.summary { + width:280px; + height:120px; + overflow:hidden; + border:3px double #cc8900; +} +.closeup div, .summary div { + display: none; + width:100%; + height:100%; + overflow:hidden; +} + +.closeup div.selected, .summary div.selected { + display: block; +} -- 2.30.2