24 lines
397 B
CSS
24 lines
397 B
CSS
![]() |
.menu {
|
||
|
position: absolute;
|
||
|
top: 50%;
|
||
|
left: 50%;
|
||
|
transform: translate(-50%, -50%);
|
||
|
background-color: rgba(0, 0, 0, 0.85);
|
||
|
color: white;
|
||
|
padding: 20px;
|
||
|
border-radius: 15px;
|
||
|
width: 400px;
|
||
|
text-align: center;
|
||
|
font-family: Arial, sans-serif;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
list-style-type: none;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
li {
|
||
|
padding: 10px;
|
||
|
border-bottom: 1px solid #ccc;
|
||
|
}
|