/*color for inactive tabs*/ .navBar { background-color: #373737; overflow: hidden; font-family: neon80; position: sticky; } /* Style the text*/ .navBar a { float: left; display: block; color: #f2f2f2; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 16px; } /* color of links being hovered over */ .navBar a:hover { background-color: #ddd; color: black; } /* color of active page */ .navBar a.active { background-color: #0099cc; color: white; } .dropDown { float: left; overflow: hidden; } .dropDown .networkDropBtn { cursor: pointer; font-size: 16px; border: none; outline: none; color: #f2f2f2; padding: 14px 16px; background-color: inherit; font-family: inherit; margin: 0; } .networkDropBtn:hover { background-color: #ddd; color: black; } .networkDrop-content { display: none; position: absolute; background-color: #373737; color: #ddd; min-width: 160px; z-index: 1; } .networkDrop-content a { float: none; color: #ddd; padding: 14px 16px; text-decoration: none; display: block; text-align: left; } .networkDrop-content a:hover { background-color: #ddd; color: black; } .dropDown .webDropBtn { cursor: pointer; font-size: 16px; border: none; outline: none; color: #f2f2f2; padding: 14px 16px; background-color: inherit; font-family: inherit; margin: 0; } .navBar .webDropBtn:hover { background-color: #ddd; color: black; } .webDrop-content { display: none; position: absolute; background-color: #373737; color: #ddd; min-width: 160px; z-index: 1; } .webDrop-content a { float: none; color: #ddd; padding: 14px 16px; text-decoration: none; display: block; text-align: left; } .webDrop-content a:hover { background-color: #ddd; color: black; } .show { display: block; }