26 lines
453 B
CSS
26 lines
453 B
CSS
.topNavBar ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background-color: #333;
|
|
position: fixed;
|
|
top: 0px;
|
|
width: 100%;
|
|
}
|
|
.topNavBar li {
|
|
float: left;
|
|
}
|
|
.topNavBar li a {
|
|
display: block;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
}
|
|
.topNavBar li a:hover {
|
|
background-color: #111;
|
|
}
|
|
.topNavBar .active {
|
|
background-color: #4CAF50;
|
|
} |