/* Wrapper for the menu */
.igem_2017_menu_wrapper {
background-color: #333;
overflow: hidden;
}
/* this hides the scrollbar to keep view consistency */
.igem_2017_menu_wrappe::-webkit-scrollbar {
display: none;
}
/* styling for links in the menu, removes the line under text */
.igem_2017_menu_wrapper a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* styling for the images in the menu */
.igem_2017_menu_wrapper img {
width: 100%;
}
/* styling for the menu buttons */
.igem_2017_menu_wrapper .menu_button {
background-color: #4CAF50;
color: white;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
.igem_2017_menu_wrapper .menu_bottom_padding {
}
.menu_button.direct_to_page {
}
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon {
}
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon::before {
}
.open::before {
}
/* styling for the menu buttons on hover */
.igem_2017_menu_wrapper .menu_button:hover, .igem_2017_menu_wrapper .submenu_button:hover , .submenu_button.current_page:hover {
background-color: #ddd;
color: black;
}
/* styling for the menu button when it is the current page */
.current_page {
background-color:#7fc1f7 !important;
color:#5e5f5f !important;
}
/* styling for the submenu buttons */
.igem_2017_menu_wrapper .submenu_button {
width: 50%;
padding: 10px 0px 10px 34px;
float:left;
background-color:#f2f2f2;
border-bottom: 1px solid #d3d3d3;
font-size: 12px;
color: #5e5f5f;
cursor: pointer;
}
/* wrapper for the submenu items, they are hidden by default*/
.igem_2017_menu_wrapper .submenu_wrapper {
display:none;
}
/* when the page size is bigger than 800px, this show/hide control is hidden by default */
.igem_2017_menu_wrapper #display_menu_control {
display:none;
text-align:center;
}