86 lines
1.4 KiB
CSS
86 lines
1.4 KiB
CSS
|
@CHARSET "UTF-8";
|
||
|
|
||
|
|
||
|
/*
|
||
|
* NavBarRedux
|
||
|
*/
|
||
|
|
||
|
.NavBarDiv {
|
||
|
overflow: hidden;
|
||
|
background-color: #333;
|
||
|
font-family: Arial;
|
||
|
}
|
||
|
|
||
|
.NavBarDiv a {
|
||
|
float: left;
|
||
|
font-size: 16px;
|
||
|
color: white;
|
||
|
text-align: center;
|
||
|
padding: 14px 16px;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.NavBarDropDown {
|
||
|
//display: none;
|
||
|
float: left;
|
||
|
overflow: hidden;
|
||
|
color: white;
|
||
|
bacground-color: #333;
|
||
|
}
|
||
|
|
||
|
.NavBarDropDown .NavBarDropDownButton {
|
||
|
font-size: 16px;
|
||
|
border: none;
|
||
|
outline: none;
|
||
|
color: white;
|
||
|
padding: 14px 16px;
|
||
|
background-color: inherit;
|
||
|
font-family: inherit; /* Important for vertical align on mobile phones */
|
||
|
margin: 0; /* Important for vertical align on mobile phones */
|
||
|
}
|
||
|
|
||
|
.NavBarDiv a:hover .NavBarDropDown:hover .NavBarDropDownButton {
|
||
|
background-color: red;
|
||
|
}
|
||
|
|
||
|
.NavBarDropDownContent {
|
||
|
/* display: none;
|
||
|
float: none;
|
||
|
color: black;
|
||
|
padding: 12px 16px;
|
||
|
text-decoration: none;
|
||
|
display: block;
|
||
|
text-align: left;*/
|
||
|
display: none;
|
||
|
position: absolute;
|
||
|
//background-color: #f9f9f9;
|
||
|
background-color: #333;
|
||
|
color: white;
|
||
|
z-index: 1;
|
||
|
/* min-width: 160px;
|
||
|
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
|
||
|
}
|
||
|
|
||
|
.NavBarDropDownContent a {
|
||
|
//display: none;
|
||
|
float: none;
|
||
|
//color: black;
|
||
|
color: white;
|
||
|
background-color: #333;
|
||
|
padding: 12px 16px;
|
||
|
text-decoration: none;
|
||
|
display: block;
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
.NavBarDropDownContent a:hover {
|
||
|
background-color: #ddd;
|
||
|
}
|
||
|
|
||
|
.NavBarDropDown:hover .NavBarDropDownContent {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
|
||
|
|