You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
CSS
46 lines
1.1 KiB
CSS
/* Dropdown Button */
|
|
.dropbtn {
|
|
margin: 0px;
|
|
padding: 0px 0px 0px 1em;
|
|
background-image: url(dropdown.png);
|
|
background-repeat: no-repeat;
|
|
background-size: 0.75em;
|
|
background-position: left center;
|
|
}
|
|
|
|
/* Dropdown button on hover & focus */
|
|
.dropbtn:hover, .dropbtn:focus {
|
|
background-size: 0.8em;
|
|
}
|
|
|
|
/* The container <div> - needed to position the dropdown content */
|
|
.dropdown {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
/* Dropdown Content (Hidden by Default) */
|
|
.dropdown-content {
|
|
display: none;
|
|
position: absolute;
|
|
background-color: #f1f1f1;
|
|
min-width: 160px;
|
|
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
|
|
z-index: 1;
|
|
}
|
|
|
|
/* Links inside the dropdown */
|
|
.dropdown-content a {
|
|
# color: black;
|
|
color: #3A568E;
|
|
padding: 4px 6px;
|
|
text-decoration: none;
|
|
display: block;
|
|
}
|
|
|
|
/* Change color of dropdown links on hover */
|
|
.dropdown-content a:hover {background-color: #ddd}
|
|
|
|
/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
|
|
.show {display:block;}
|