Header Element
HTML
CSS
#header_container {
background-image: url(header_background.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
width: 70%;
margin: 0 auto;
height: 20em;
max-height: 20em;
overflow: hidden;
min-width: 1308px;
max-width: 1308px;
z-index: 0;
}
#header_background {
}
#nav_bar {
top: 84%;
position: relative;
height: 5em;
width: 100%;
min-width: 1308px;
z-index: 2;
}
#nav_bar_list {
height: auto;
margin: 0;
list-style: none;
width: 100%;
padding: 0px;
border: 2px solid gray;
background-color: #8891a0;
}
.nav_bar_list_item {
display: inline-block;
font-family: Arial;
color: white;
font-size: 22px;
border-right: 2px solid gray;
padding: 10px;
width: calc(100%/6.8);
text-align: center;
background-color: #8891a0
}
.nav_bar_list_item:hover {
background-color: white;
color: black;
cursor: pointer;
}