114 lines
1.8 KiB
CSS
114 lines
1.8 KiB
CSS
.navBar {
|
|
background-color: #373737;
|
|
overflow: hidden;
|
|
font-family: neon80;
|
|
}
|
|
|
|
.navBar a {
|
|
float: left;
|
|
display: block;
|
|
color: #f2f2f2;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.navBar a:hover {
|
|
background-color: #ddd;
|
|
color: black;
|
|
}
|
|
|
|
.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;
|
|
} |