/* Add a black background color to the top navigation */
|
|
.topnav {
|
|
background-color: rgba(0,5,44,1.0);
|
|
overflow: hidden;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.topnavContainer {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Style the links inside the navigation bar */
|
|
.topnav .topnavContainer a {
|
|
float: left;
|
|
color: #f2f2f2;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
font-size: 17px;
|
|
}
|
|
|
|
/* Change the color of links on hover */
|
|
.topnav .topnavContainer a:hover {
|
|
background-color: #ddd;
|
|
color: black;
|
|
}
|
|
|
|
/* Add a color to the active/current link */
|
|
.topnav .topnavContainer a.active {
|
|
background-color: #3654DD;
|
|
color: white;
|
|
}
|
|
|
|
.subnav {
|
|
overflow: hidden;
|
|
font-size: 14px;
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
.subnavContainer {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Style the links inside the navigation bar */
|
|
.subnav .subnavContainer a {
|
|
float: left;
|
|
color: black;
|
|
text-align: center;
|
|
padding: 12px 8px;
|
|
text-decoration: none;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/* Change the color of links on hover */
|
|
.subnav .subnavContainer a:hover {
|
|
color: black;
|
|
}
|
|
|
|
/* Add a color to the active/current link */
|
|
.subnav .subnavContainer a.active {
|
|
background-color: #ddd;
|
|
color: #3654DD;
|
|
}
|
|
|
|
|
|
|
|
/* Add a black background color to the top navigation */
|
|
.footer {
|
|
background-color: rgba(0,5,44,1.0);
|
|
overflow: hidden;
|
|
font-size: 16px;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.footerContainer {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
color: #f2f2f2;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
font-size: 17px;
|
|
}
|