summaryrefslogtreecommitdiff
path: root/static/header.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/header.css')
-rwxr-xr-x[-rw-r--r--]static/header.css121
1 files changed, 115 insertions, 6 deletions
diff --git a/static/header.css b/static/header.css
index c32510c..4b03c2c 100644..100755
--- a/static/header.css
+++ b/static/header.css
@@ -13,9 +13,10 @@
text-decoration: none;
text-shadow: -1px 1px 1px #;
background-color:#036aca;
- height:60px;
+background-color: cornflowerblue;
+
- bottom:0px;
+
box-shadow: 3px 2px 2px #036aca;
-webkit-box-shadow: 3px 2px 2px #036aca;
-moz-box-shadow: 3px 2px 2px #036aca;
@@ -38,15 +39,15 @@ filter: progid:DXImageTransform.Microsoft.dropShadow(color=#036aca, offX=3, offY
position:fixed;
width:100%;
left: 0px;
- height: 69px;
+
}
#bar7{
- top:30px;
+ top:28px;
position:absolute;
font-family: Arial, Helvetica, sans-serif;
- width: 500px;
+
font-size: 18px;
- left: 150px;
+ left: 170px;
margin-left: 2%;
margin-right: 8%;
letter-spacing: -1px;
@@ -256,3 +257,111 @@ body {
z-index:0;
}
+
+/* CSS Document */
+#menuh-container
+ {
+ position: absolute;
+top:-0;
+left:10;
+width:auto;
+ }
+
+#menuh
+ {
+width:auto;
+ }
+
+#menuh a
+ {
+ text-align: center;
+
+
+
+ margin:0;
+
+ }
+
+#menuh a:link, #menuh a:visited, #menuh a:active /* menu at rest */
+ {
+ color: white;
+
+ text-decoration:none;
+ }
+
+#menuh a:hover /* menu on mouse-over */
+ {
+ color: white;
+ background-color: cornflowerblue;
+ text-decoration:none;
+ }
+
+#menuh a.top_parent, #menuh a.top_parent:hover /* attaches down-arrow to all top-parents */
+ {
+
+ background-position: right center;
+width:;0;
+ background-repeat: no-repeat;
+ }
+
+#menuh a.parent, #menuh a.parent:hover /* attaches side-arrow to all parents */
+ {
+ background-image: url(/static/nav_white.gif);
+ background-position: right center;
+ background-repeat: no-repeat;
+ }
+
+#menuh ul
+ {
+
+
+ width:9em; /* width of all menu boxes */
+ /* NOTE: For adjustable menu boxes you can comment out the above width rule.
+ However, you will have to add padding in the "#menh a" rule so that the menu boxes
+ will have space on either side of the text -- try it */
+ }
+
+#menuh li
+ {
+ position:relative;
+ /* Sophie Dennis contribution for IE7 */
+ vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
+
+ }
+
+#menuh ul ul
+ {
+
+
+ top:auto;
+ display:none;
+ padding: 1em;
+ margin:-15 -3 -3em;
+
+ }
+
+#menuh ul ul ul
+ {
+ top:0;
+ left:100%;
+ }
+
+div#menuh li:hover
+ {
+ cursor:pointer;
+ z-index:100;
+ }
+
+div#menuh li:hover ul ul,
+div#menuh li li:hover ul ul,
+div#menuh li li li:hover ul ul,
+div#menuh li li li li:hover ul ul
+{display:none;}
+
+div#menuh li:hover ul,
+div#menuh li li:hover ul,
+div#menuh li li li:hover ul,
+div#menuh li li li li:hover ul
+{display:block;}
+
+/* End CSS Drop Down Menu */