Skip to content
Snippets Groups Projects
Unverified Commit 2106b73d authored by Abraham Raji's avatar Abraham Raji
Browse files

Apply Options

parent a2ebe527
Branches
No related merge requests found
This diff is collapsed.
...@@ -189,6 +189,49 @@ nav{ ...@@ -189,6 +189,49 @@ nav{
padding: 10px 20px; padding: 10px 20px;
cursor: pointer; cursor: pointer;
} }
.dropbtn {
background-color: white;
color: black;
padding: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
.dropbtn:hover, .dropbtn:focus {
background-color: #468c9f;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
min-width: 200px;
overflow: auto;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
border: 1px solid lightgray;
}
.dropdown-content a {
color: black;
padding: 10px 15px;
text-decoration: none;
display: block;
}
.dropdown a:hover {background-color: #ddd;}
.show {
display: flex;
flex-direction: column;
transition: 0.4s;
}
@keyframes dropdown{ @keyframes dropdown{
0% { 0% {
opacity: 0; opacity: 0;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment