1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
|
/* Allgemeine Angaben */
body
{
font-family:Arial;
font-size:12px;
background-color:#efdfd6;
background-image:url('http://momo869.is-a-chef.net/Memorio/Reitstall/Grafiken/Herbst.gif');
background-position: 50% 50%;
background-attachment: fixed;
background-repeat: no-repeat;
text-align:center;
margin: 0em;
padding: 0em;
}
A:link { color: #7B1818; font-size: 12px; font-style: Arial; text-decoration: none; }
A:visited { color: #7B1818; font-size: 12px; font-style: Arial; text-decoration: none; }
A:hover { color: #7B1818; font-size: 12px; font-style: Arial; text-decoration: border:1 solid; border-color:#000000; background-color:#FFFFFF; }
A:active { color: #7B1818; font-size: 12px; font-style: Arial; text-decoration: none; }
}
/* Hier wird alles für das Menu zusammen gestellt*/
#nav ul {
list-style: none;
}
#nav {
margin-top: 14em;
margin-bottom: 2em;
margin-left: 10em;
z-index:1;
}
#nav a {
display: block;
width: 10em;
}
#nav li {
float: left;
width: 6em;
color: #71643d;
font-size: 18px;
color: #7B1818;
}
#nav li ul {
list-style: left;
position: absolute;
width: 8em;
left: -999em;
font-size: 12px;
color: #7B1818;
}
#nav li:hover ul {
left: auto;
}
sfHover = function() {
var sfEls = document.getElementById("nav").getElementsByTagName("LI");
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=" sfhover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
#nav li:hover ul, #nav li.sfhover ul {
left: auto;
}
/* Hier ist alles für den Inhalt inhalten */
.inline {
width: 955px;
height: 375px;
border: 1px solid #ff0000;
overflow: auto;
z-index:2;
}
|