Add navbar css

The styling for the site's navbar goes in this file.
This commit is contained in:
Simon Glisic Randby 2015-09-13 22:55:59 +02:00
parent 4cd6a28a62
commit f62e4e3d6f
1 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,35 @@
nav{
background-color: #f5c88a;
display: inline-block;
float: center;
font-size: 1.2em;
font-weight: bold;
width: 100%;
}
nav ul{
list-style: none;
margin: 0;
padding-left: 0.6em;
padding-right: 0.6em;
}
nav li{
/*background-color: #0dffad;*/
display: inline-block;
list-style-type: none;
/*Shorthand margin takes input in the order:
top, right, bottom, left*/
margin: 0.2em 1em 0.2em 1em;
}
/*nav ul a{
display: block;
}*/
nav ul a:link{
color: black;
}
nav ul a:visited{
color: black;
}
nav ul a:hover{
color: #0c80e8;
}