* Navigation fuer titlebar hinzugefuegt, schliesst #94
This commit is contained in:
parent
84fbbaad30
commit
584a65a0b0
2 changed files with 49 additions and 2 deletions
|
@ -81,10 +81,43 @@ hr {
|
||||||
width: 0px;
|
width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#titlenav {
|
||||||
|
position: absolute;
|
||||||
|
top: 20px;
|
||||||
|
left: 20px;
|
||||||
|
display: inline;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
z-index: 5;
|
||||||
|
font-size: 110%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlenav li {
|
||||||
|
color: #43598e;
|
||||||
|
float: left;
|
||||||
|
list-style-type: disc;
|
||||||
|
margin-left: 16pt;
|
||||||
|
padding-left: 0pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlenav li:first-child {
|
||||||
|
margin-left: 0;
|
||||||
|
padding-left: 0;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlenav a {
|
||||||
|
color: #f57900;
|
||||||
|
padding: 5pt 10pt;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titlenav a:hover {
|
||||||
|
color: #fcaf3e;
|
||||||
|
}
|
||||||
|
|
||||||
#titlebar {
|
#titlebar {
|
||||||
background-color: #33436a;
|
background-color: #33436a;
|
||||||
color: white;
|
|
||||||
font-size: 44px;
|
|
||||||
text-shadow: 2px 2px 3px gray;
|
text-shadow: 2px 2px 3px gray;
|
||||||
height: 54px;
|
height: 54px;
|
||||||
padding-top: 1px;
|
padding-top: 1px;
|
||||||
|
@ -93,8 +126,16 @@ hr {
|
||||||
border-bottom: 6px solid #f57900;
|
border-bottom: 6px solid #f57900;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#titlebar .left {
|
||||||
|
text-align: left;
|
||||||
|
color: orange;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
#titlebar .right {
|
#titlebar .right {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
color: white;
|
||||||
|
font-size: 44px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
\begin{rawhtml}
|
\begin{rawhtml}
|
||||||
<div id="container">
|
<div id="container">
|
||||||
<div id="titlebar">
|
<div id="titlebar">
|
||||||
|
<div class="left">
|
||||||
|
<ul id="titlenav">
|
||||||
|
<li><a href="index.html" title="Start">Start</a></li>
|
||||||
|
<li><a href="hilfe.html" title="Hilfe">Hilfe</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
<div class="right">Die CryptoCD</div>
|
<div class="right">Die CryptoCD</div>
|
||||||
</div>
|
</div>
|
||||||
\end{rawhtml}
|
\end{rawhtml}
|
||||||
|
|
Loading…
Reference in a new issue