mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-13 15:44:35 +01:00
45 lines
557 B
CSS
45 lines
557 B
CSS
.Menu {
|
|
position: fixed;
|
|
z-index: 99;
|
|
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
|
|
height: 70%;
|
|
width: 60%;
|
|
|
|
background-color: #fff;
|
|
}
|
|
|
|
.MenuInner {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.MenuHeading {
|
|
font-size: 2rem;
|
|
margin: 16px;
|
|
}
|
|
|
|
.MenuTop {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.MenuExit {
|
|
height: 30px;
|
|
margin: 20px;
|
|
}
|
|
|
|
.MenuExit:hover {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.MenuExit img {
|
|
height: 100%;
|
|
} |