Improvements to pack description and documentation.
parent
6f0f63a3be
commit
2571318f56
Binary file not shown.
|
After Width: | Height: | Size: 159 B |
@ -0,0 +1,45 @@
|
||||
/* 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;}
|
||||
Loading…
Reference in New Issue