You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
331 B
CSS

/*NAVIGATION*/
/*bar*/
.topnav {
overflow: hidden;
}
/*style*/
.topnav a {
float: left;
color: grey;
font-family: sans-serif;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 1em;
}
/*hover link*/
.topnav a:hover {
color: yellow;
}
/*active link*/
.topnav a.active {
color: black;
}