aboutsummaryrefslogtreecommitdiff
path: root/source/css
diff options
context:
space:
mode:
Diffstat (limited to 'source/css')
-rwxr-xr-xsource/css/style.css134
1 files changed, 56 insertions, 78 deletions
diff --git a/source/css/style.css b/source/css/style.css
index 51a02c29..86036357 100755
--- a/source/css/style.css
+++ b/source/css/style.css
@@ -1,16 +1,12 @@
html, body {
margin: 0px 0px 0px 5px;
padding: 0px 0px 0px 0px;
- width: 100%;
height: 100%;
overflow-x: hidden;
background-color: white;
color: black;
-}
-
-body {
text-align: justify;
- font: 400 0.85em Cambria, Georgia, "Trebuchet MS", Verdana, sans-serif;
+ font: normal small 'Gill Sans','Gill Sans MT',Verdana,sans-serif;
}
img {
@@ -45,28 +41,6 @@ h1 a, h2 a, h3 a {
text-decoration: none;
}
-ol.lower {
- list-style-type: lower-alpha;
-}
-
-ol.upper {
- list-style-type: upper-alpha;
-}
-
-ol.roman {
- list-style-type: lower-roman;
-}
-
-ul {
- margin: 0px 0px 0px 5px;
- padding: 0em;
-}
-
-li {
- margin: 0px 0px 0px 5px;
- padding: 0em;
-}
-
a:link, a:visited {
color: #003399;
text-decoration:none
@@ -76,16 +50,6 @@ a:hover {
color: blue;
}
-dt {
- margin: 0.5em 0em 0em 0em;
- padding: 0em;
- font-weight: bold;
-}
-
-dd {
- margin: 0em;
-}
-
hr {
color: white;
border-top: dotted black;
@@ -93,19 +57,35 @@ hr {
margin: 1em 0em;
}
-
-#heading {
- position: absolute;
- left: 0px;
- top: 0px;
- width: 100%;
- z-index: 1;
+/* Menu */
+.menu_container {
+ position:fixed;
+ margin:0px;
+ padding:0px;
+ z-index:4;
}
/* Navigation bars */
-.nav_container { position:fixed; top:145px; right:5px; margin:0px; padding:0px; white-space:nowrap; z-index:11; clear:both;}
-.nav_container.horizontal { position:absolute; white-space:normal; z-index:25; width:*; }
-.nav_container.horizontal div { float:right; padding-right:10px; }
+.nav_container {
+ position:fixed;
+ top:112px;
+ right:5px;
+ margin:0px;
+ padding:0px;
+ white-space:nowrap;
+ z-index:3;
+ clear:both;
+}
+.nav_container.horizontal {
+ position:absolute;
+ white-space:normal;
+ z-index:4;
+ width:*;
+}
+.nav_container.horizontal div {
+ float:right;
+ padding-right:10px;
+}
#nav {
position: absolute;
@@ -191,7 +171,6 @@ blockquote.right {
.clear {
font-size: 1px;
- line-height: 1px;
height: 0px;
clear: both;
}
@@ -223,34 +202,33 @@ blockquote.right {
margin-right: -0.1em;
}
-
/* CSS ToolTips */
- .tooltip {
- color: #FFF;
- outline: none;
- text-decoration: none;
- position: relative;
- }
-
- .tooltip span {
- color: #FFF;
- margin-left: -999em;
- position: absolute;
- }
-
- .tooltip:hover span {
- border-radius: 5px 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
- box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.1); -moz-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
- font-family: Calibri, Tahoma, Geneva, sans-serif;
- position: absolute; left: 1em; top: 2em; z-index: 99;
- margin-left: 0; width: 250px;
- }
- .classic {
- padding: 0.8em 1em;
- background: rgba(0, 0, 0, 0.85);
- border: 5px 5px;
- }
-
- * html a:hover {
- background: transparent;
- }
+.tooltip {
+ color: #FFF;
+ outline: none;
+ text-decoration: none;
+ position: relative;
+}
+
+.tooltip span {
+ color: #FFF;
+ margin-left: -999em;
+ position: absolute;
+}
+
+.tooltip:hover span {
+ border-radius: 5px 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
+ box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.1); -moz-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
+ font-family: Calibri, Tahoma, Geneva, sans-serif;
+ position: absolute; left: 1em; top: 2em; z-index: 99;
+ margin-left: 0; width: 250px;
+}
+.classic {
+ padding: 0.8em 1em;
+ background: rgba(0, 0, 0, 0.85);
+ border: 5px 5px;
+}
+
+* html a:hover {
+ background: transparent;
+} \ No newline at end of file
bgstack15