42 lines
645 B
CSS
42 lines
645 B
CSS
|
body {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.dropdown-container {
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.dropdown-menu {
|
||
|
position: relative;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
|
||
|
.dropdown-button {
|
||
|
background-color: rgb(108, 238, 255);
|
||
|
padding: 16px;
|
||
|
font-size: 16px;
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
.dropdown-content {
|
||
|
visibility: hidden;
|
||
|
position: absolute;
|
||
|
left: -25%;
|
||
|
background-color: rgb(189, 188, 188);
|
||
|
width: 160px;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
font-family: Arial, Helvetica, sans-serif;
|
||
|
color: black;
|
||
|
padding: 12px 16px;
|
||
|
text-decoration: none;
|
||
|
text-align: center;
|
||
|
}
|