diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-28 12:26:44 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-28 12:26:44 +0100 |
commit | 0fcac04804de77f8a9cfb917c127fd3a7818edc0 (patch) | |
tree | 449993fce875b72942b08c393ce3a97a2d61bf7c /static | |
parent | a4f635716015c9f5ed5e6bcd2564da49a2b7f458 (diff) | |
download | Ishtar-0fcac04804de77f8a9cfb917c127fd3a7818edc0.tar.bz2 Ishtar-0fcac04804de77f8a9cfb917c127fd3a7818edc0.zip |
jQuery integration - reorganization - presentation work
Diffstat (limited to 'static')
-rw-r--r-- | static/js/ishtar.js | 10 | ||||
-rw-r--r-- | static/media/images/favicon.png | bin | 0 -> 666 bytes | |||
-rw-r--r-- | static/media/images/ishtar-bg.jpg | bin | 0 -> 18732 bytes | |||
-rw-r--r-- | static/media/images/ishtar-text.png | bin | 0 -> 2928 bytes | |||
-rw-r--r-- | static/media/images/logo.ico | bin | 0 -> 766 bytes | |||
-rw-r--r-- | static/media/images/logo.png | bin | 0 -> 6198 bytes | |||
-rw-r--r-- | static/media/style.css | 123 |
7 files changed, 133 insertions, 0 deletions
diff --git a/static/js/ishtar.js b/static/js/ishtar.js new file mode 100644 index 000000000..9e94b4359 --- /dev/null +++ b/static/js/ishtar.js @@ -0,0 +1,10 @@ +$(document).ready(function(){ + $("#main_menu ul ul").hide(); + $("#main_menu ul ul .selected").parent().show(); +}); + +$("#main_menu ul li").live('click', function(){ + $("#main_menu ul ul").hide('slow'); + $(this).find('ul').show('slow'); +}); + diff --git a/static/media/images/favicon.png b/static/media/images/favicon.png Binary files differnew file mode 100644 index 000000000..49a143457 --- /dev/null +++ b/static/media/images/favicon.png diff --git a/static/media/images/ishtar-bg.jpg b/static/media/images/ishtar-bg.jpg Binary files differnew file mode 100644 index 000000000..31dff0f15 --- /dev/null +++ b/static/media/images/ishtar-bg.jpg diff --git a/static/media/images/ishtar-text.png b/static/media/images/ishtar-text.png Binary files differnew file mode 100644 index 000000000..34f3270eb --- /dev/null +++ b/static/media/images/ishtar-text.png diff --git a/static/media/images/logo.ico b/static/media/images/logo.ico Binary files differnew file mode 100644 index 000000000..c6417a32e --- /dev/null +++ b/static/media/images/logo.ico diff --git a/static/media/images/logo.png b/static/media/images/logo.png Binary files differnew file mode 100644 index 000000000..e150baa6c --- /dev/null +++ b/static/media/images/logo.png diff --git a/static/media/style.css b/static/media/style.css new file mode 100644 index 000000000..d1b536f1f --- /dev/null +++ b/static/media/style.css @@ -0,0 +1,123 @@ +body{ + font-family:Arial, Helvetica, sans-serif; + font-size: 11pt; + margin:0; + color:#61615C; + background-image:url(images/ishtar-bg.jpg); + background-repeat:no-repeat; + background-position:right top; +} + +a { + text-decoration:none; + color:#D14; +} + +caption { + color:#922; + font-weight:bold; +} + +label{display:block} + +label:first-letter { + text-transform: uppercase; +} + +.hidden{ + display:none; +} + +div#header{ + width:100%; + text-align:right; + font-size: 0.9em; + background-color: #EEE; + border-bottom:1px solid #CCC; + margin-bottom:10px; +} + +div#logo{ + width:200px; + top:30px; + left:30px; + padding-top:90px; + position:absolute; + text-align:center; + background-image:url(images/ishtar-text.png); + background-repeat:no-repeat; +} + +div#context_menu{ + height:150px; + margin-left:200px; + margin-right:20px; + margin-bottom:20px; +} + +div#main_menu{ + width:200px; + position:absolute; +} + +div#main_menu ul{ + padding-left:1.5em; + cursor:pointer; + list-style:none; +} + +div#main_menu a{ + color:#666; +} + +div#main_menu a:hover{ + color:#D14; +} + +div#main_menu .selected a{ + color:#D14; +} + + +div#main_menu > ul{ + color:#922; +} + +div#content{ + margin-left:200px; +} + +div.form { + margin-left:auto; + margin-right:auto; + padding:1em; + display:block; + width:500px; + background-color: #EEE; + border:1px solid #CCC; + border-radius:10px; + text-align:center; +} + +div.form table{ + padding:0.2em; + margin-left:auto; + margin-right:auto; +} + +div.form table th{ + text-align:left; +} + +.info{ + margin-left:auto; + margin-right:auto; + padding:1em; + display:block; + width:500px; +} + +.info p{ + padding:0; + margin:0.2em; +} |