netmaker/docs/_build/html/_static/material.css
2021-11-17 09:14:13 -05:00

35 lines
672 B
CSS

.dropdown {
width: 125px;
vertical-align: middle;
}
.dropdownbutton {
color: inherit;
font-weight: 700;
font-size: .65rem;
}
.dropdown-content {
display: none;
position: absolute;
z-index: 1;
background-color: inherit;
}
.dropdown-content a {
display: block;
width: 125px;
margin: 8px;
font-size: .65rem;
font-weight: 200;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}
/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {}