diff options
Diffstat (limited to 'source/default.css')
-rw-r--r-- | source/default.css | 54 |
1 files changed, 37 insertions, 17 deletions
diff --git a/source/default.css b/source/default.css index ee9396f957..f13f61f75a 100644 --- a/source/default.css +++ b/source/default.css @@ -93,7 +93,7 @@ h4, h5, h6 { } .avis { - background-color: #FFCCFF; + background-color: #EEEEEE; } .relatedtopics { @@ -184,7 +184,7 @@ h4, h5, h6 { bottom: 5px; right: 5px; left: 30%; - top: 15%; + top: 10%; overflow: auto; border: solid 1px; padding: 10px; @@ -196,7 +196,7 @@ h4, h5, h6 { left: 5px; overflow: auto; right: 70%; - top: 15%; + top: 10%; border-top: solid 1px; border-left: solid 1px; border-bottom: solid 1px; @@ -204,24 +204,18 @@ h4, h5, h6 { } #TopRight { - border-top: solid 1px; - border-left: solid 1px; - border-right: solid 1px; position: fixed; - right: 5px; - top: 5px; - left: 50%; - bottom: 85%; + right: 0px; + top: 0px; + left: 70%; + bottom: 90%; } #TopLeft { - border-top: solid 1px; - border-left: solid 1px; - border-right: solid 1px; - left: 5px; + left: 0px; position: fixed; - top: 5px; - bottom: 85%; + top: 0px; + bottom: 90%; } #NavigationHistory { @@ -250,5 +244,31 @@ h4, h5, h6 { } .embedded { - border-right: 10px solid red; } +// Top menu navidation +nav { + background-color: #333; + margin: 0; + overflow: hidden; +} +nav ul{ + margin: 0; + padding: 0; +} +nav ul li { + /* This allow us to arrange list items in a row, without using float */ + display: inline-block; + list-style-type: none; +} + +/* Create a style for the first level items */ +nav > ul > li > a { + color: #FFFFFF; + background-color:#18A303; + display: block; + line-height: 2em; + padding: 0.5em 0.5em; + text-decoration: none; +} + + |