Skip to content

Instantly share code, notes, and snippets.

@otrack
Created July 19, 2023 18:34
Show Gist options
  • Save otrack/b753c4eb604224648bdd82b7f7e1dccf to your computer and use it in GitHub Desktop.
Save otrack/b753c4eb604224648bdd82b7f7e1dccf to your computer and use it in GitHub Desktop.
.experiments {
display: inline-block;
width: 45%;
height: 80vh;
margin: 2em;
/* background-color: green; */
}
.graph {
display: inline-block;
width: 45%;
height: 80vh;
margin: 2em;
/* background-color: blue; */
}
/* Dropdown Button */
.dropbtn {
background-color: #528AAE;
color: white;
padding: 16px;
font-size: 16px;
border: none;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
margin: 1em;
}
/* 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.2);
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd;}
/* 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 {background-color: #91BAD6;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment