feat(web): initialize sasa info menu

This commit is contained in:
2023-01-29 02:45:39 +03:00
parent 660ff87af6
commit 5cb498112d
3 changed files with 129 additions and 13 deletions
+39
View File
@@ -51,3 +51,42 @@ main {
min-width: 100%;
min-height: 100%;
}
.menu-wrapper {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: #0008;
}
.menu {
background-color: #eee;
box-shadow: 0 0 0.5vw black;
border-radius: 16px;
width: 80vw;
height: 80vh;
max-width: 700px;
transition: 0.3s;
overflow: hidden;
}
form#sasa-menu {
margin: 0;
padding: 2vw 2vw;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
#tanzaku-list {
height: 40vh;
overflow-y: scroll;
overflow-x: hidden;
}