aboutsummaryrefslogtreecommitdiff
path: root/www/analyzer/menu.css
diff options
context:
space:
mode:
Diffstat (limited to 'www/analyzer/menu.css')
-rw-r--r--www/analyzer/menu.css80
1 files changed, 46 insertions, 34 deletions
diff --git a/www/analyzer/menu.css b/www/analyzer/menu.css
index 0312f4c8b1f1..05c1bbfc82db 100644
--- a/www/analyzer/menu.css
+++ b/www/analyzer/menu.css
@@ -1,40 +1,52 @@
-/***************/
-/* page layout */
-/***************/
+/* From 'A list apart', 'dropdowns' */
-[id=menu] {
- position:fixed;
- width:35ex;
+#nav {
+ clear: left;
+ margin:0;
+ padding:0;
+ font-weight: bold;
+ width:100%;
+ background-color: #EBF0FA;
+ border-bottom: 1px solid;
+ font-size: 80%;
}
-[id=content] {
- /* ***** EDIT THIS VALUE IF CONTENT OVERLAPS MENU ***** */
- position:absolute;
- left:39ex;
- padding-right:4ex;
+#nav a {
+ text-decoration: none;
+}
+#nav a:hover {
+ text-decoration: underline;
}
-
-/**************/
-/* menu style */
-/**************/
-
-#menu .submenu {
- padding-top:1em;
- display:block;
+.menubar ul {
+ list-style: none inside;
}
-
-#menu label {
- display:block;
- font-weight: bold;
- text-align: center;
- color: #ffffff;
- background-color: #2d58b7;
+.menubar li {
+ margin: 0;
+ padding: 5px;
+ text-align: left;
+ text-indent: 0px;
+ list-style-position: inside;
+ list-style:none;
+ float: left;
+ position: relative;
+ width: 13em;
+ cursor: default;
+ background-color: #EBF0FA;
}
-#menu a {
- padding:0 .2em;
- display:block;
- text-align: center;
- background-color: #EBF0FA;
+.menubar li ul /* second level lists */ {
+ display: none;
+ position: absolute;
+ left: 0;
}
-#menu a:visited {
- color:rgb(100,50,100);
-} \ No newline at end of file
+.menubar li>ul {
+ border-left: 1px solid;
+ border-right: 1px solid;
+ border-bottom: 1px solid;
+ padding: 0;
+ margin: 5px 0;
+ left:auto;
+ font-weight: normal;
+}
+.menubar li:hover ul, li.over ul { /* lists nested under hovered list items */
+ display: block;
+}
+