You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
862 B
CSS
54 lines
862 B
CSS
.dialog-parent {
|
|
display: flex;
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 0px;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.dialog {
|
|
display: inline-flex;
|
|
position: relative;
|
|
min-width: 320px;
|
|
min-height: 100px;
|
|
max-width: 90vw;
|
|
max-height: 90vh;
|
|
|
|
background: white;
|
|
box-shadow: 0px 0px 5px black;
|
|
}
|
|
|
|
.dialog-content {
|
|
display: inline-block;
|
|
margin-bottom: 35px;
|
|
padding: 10px;
|
|
|
|
overflow: scroll;
|
|
}
|
|
|
|
.dialog-buttons {
|
|
display: flex;
|
|
position: absolute;
|
|
left: 0px;
|
|
bottom: 0px;
|
|
height: 35px;
|
|
width: 100%;
|
|
|
|
justify-content: center;
|
|
align-items: center;
|
|
column-gap: 15px;
|
|
}
|
|
|
|
.dialog-content > input[type=text] {
|
|
width: 100%;
|
|
}
|
|
|
|
.dialog-content > label {
|
|
font-size: smaller;
|
|
} |