nicer admin navigation
This commit is contained in:
parent
4c21bbcefd
commit
6f143cc21f
2 changed files with 30 additions and 13 deletions
|
@ -75,6 +75,10 @@
|
||||||
|
|
||||||
</article>
|
</article>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<p>Naturheilpraxis SEINHEIT. Kinga Pannek, Bahnhofstraße 105, 8620 Wetzikon, Schweiz</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -1,28 +1,41 @@
|
||||||
#adminNavigation {
|
#adminNavigation {
|
||||||
font-family: verdana;
|
font-family: verdana;
|
||||||
background-color: #90CB93;
|
background: #90CB93;
|
||||||
position: absolute;
|
position: fixed;
|
||||||
top: 0px;
|
bottom: 0;
|
||||||
left: 0px;
|
left: 0;
|
||||||
width: 689px;
|
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 2px;
|
padding: 0 70px;
|
||||||
font-size: 0.8em;
|
width: 100%;
|
||||||
width: 725px;
|
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
|
||||||
* width: 729px;
|
-moz-box-sizing: border-box; /* Firefox, other Gecko */
|
||||||
|
box-sizing: border-box; /* Opera/IE 8+ */
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminNavigation li {
|
#adminNavigation li {
|
||||||
float: left;
|
display: inline;
|
||||||
padding: 0 5px;
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminNavigation li:first-child {
|
||||||
|
padding-right: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminNavigation li:last-child {
|
||||||
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
#adminNavigation a {
|
#adminNavigation a {
|
||||||
color: white;
|
color: white;
|
||||||
background-color: #416843;
|
background: #416843;
|
||||||
padding: 3px 5px;
|
padding: 1em;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
#adminNavigation a:hover {
|
||||||
|
background: #216849;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue