summaryrefslogtreecommitdiff
path: root/www/stylesheet.css
diff options
context:
space:
mode:
authorknittl <knittl@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2010-08-14 12:55:09 +0000
committerknittl <knittl@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2010-08-14 12:55:09 +0000
commit6cb3ba5258ed6dffe9c942ed14ec7fcc9a38ddf0 (patch)
tree3b6b5de29e0e63136dcdbaa24b6a9d6c25344651 /www/stylesheet.css
parente924ad5d63f777e24dd0ab833b74fa95487097fc (diff)
downloadneo-layout-6cb3ba5258ed6dffe9c942ed14ec7fcc9a38ddf0.tar.gz
neo-layout-6cb3ba5258ed6dffe9c942ed14ec7fcc9a38ddf0.tar.bz2
neo-layout-6cb3ba5258ed6dffe9c942ed14ec7fcc9a38ddf0.zip
Update main menu on home page
git-svn-id: https://svn.neo-layout.org@2337 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'www/stylesheet.css')
-rw-r--r--www/stylesheet.css83
1 files changed, 37 insertions, 46 deletions
diff --git a/www/stylesheet.css b/www/stylesheet.css
index 7d51236..e06b0f9 100644
--- a/www/stylesheet.css
+++ b/www/stylesheet.css
@@ -24,52 +24,6 @@ div.Hauptfeld {
margin-bottom:0em;
}
-#Navigationsleiste {
- background-color:#F8F8FA;
- color:WindowText;
- position:relative;
- width:11em;
- float:left;
- text-align:center;
- margin:2em;
- margin-left:0em;
- margin-top:2em;
- border-width:thin;
- border-style:solid;
- border-color:green;
- border-top-width:0px;
-
-}
-
-div.Navigationsthema {
- border-bottom-width:1px;
- border-bottom-style:solid;
- border-color:black;
- border-top-width:1px;
- border-top-style:solid;
- border-color:black;
- text-align:center;
- font-weight:bold;
- background-color:#FAFBF8;
- color:InfoText;
- padding-top:.2em;
- padding-bottom:.2em;
-}
-
-div.Navigationsunterpunkte {
- padding-top:.5em;
- padding-bottom:.75em;
-}
-
-a.Navigationseintrag {
- display:block;
- text-align:left;
- padding-left:1em;
- padding-right:1em;
- padding-top:.25em;
- padding-bottom:.25em;
-}
-
#Bildcontainer_links {
width:10em;
border-width:thin;
@@ -210,3 +164,40 @@ p { /* text-indent:1em;
background-color:Highlight;
}
+ul#menu, ul#menu ul {
+ list-style:none;
+ padding-left:0;
+ margin-left:0;
+}
+#menu {
+ position:relative;
+ float:left;
+ width:11em;
+
+ border:1px solid black;
+ color:WindowText;
+ background-color:#ccf;
+ font-family:Linux Biolinum O, Linux Biolinum, sans;
+ font-weight:bold;
+
+ margin:2em 1em;
+}
+
+/* section containers */
+#menu li { color:InfoText; }
+/* section list (items) */
+#menu li ul { font-weight:normal; }
+/* use css2 in browsers that support it */
+#menu > li, #menu li ul { margin-top:1ex; }
+#menu > li { padding-left:1em; }
+#menu > li ul { margin-left:-1em; }
+
+/* section list links */
+#menu li ul li a {
+ display:block;
+ padding:.4em 1em;
+
+ background-color:#f8f8fa;
+ font-weight:normal;
+}
+#menu li ul li a:hover { background-color:Highlight; }