2021-06-04 12:05:05 +00:00
|
|
|
#modal {
|
2021-05-31 07:17:07 +00:00
|
|
|
position: fixed;
|
|
|
|
z-index: 100000;
|
|
|
|
padding-top: 100px;
|
2021-07-06 21:15:18 +00:00
|
|
|
padding-bottom: 100px;
|
2021-05-31 07:17:07 +00:00
|
|
|
width: 100%;
|
2021-07-06 21:15:18 +00:00
|
|
|
height: calc(100% - 200px);
|
2021-05-31 07:53:12 +00:00
|
|
|
background-color: rgba(0, 0, 0, 0.8);
|
2021-05-31 07:17:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
background-color: #fefefe;
|
|
|
|
margin: auto;
|
|
|
|
padding: 20px;
|
|
|
|
border: 1px solid #888;
|
|
|
|
width: 90%;
|
2021-07-06 21:15:18 +00:00
|
|
|
height: 100%;
|
2021-06-04 12:05:05 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.divider {
|
|
|
|
background: #585858;
|
|
|
|
height: 0.1em;
|
|
|
|
margin: 0.5em 0 0.5em;
|
2021-05-31 07:17:07 +00:00
|
|
|
}
|
|
|
|
|
2021-06-04 12:05:05 +00:00
|
|
|
#modal_header {
|
2021-05-31 07:17:07 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 90% 10%;
|
|
|
|
}
|
|
|
|
|
2021-06-04 12:05:05 +00:00
|
|
|
#modal_header #modal_title {
|
2021-05-31 07:17:07 +00:00
|
|
|
grid-column: 1;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2021-06-04 12:05:05 +00:00
|
|
|
#modal_header > span {
|
2021-05-31 07:17:07 +00:00
|
|
|
grid-column: 2;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2021-06-04 12:05:05 +00:00
|
|
|
#modal_header span i {
|
2021-05-31 07:17:07 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2021-06-04 12:05:05 +00:00
|
|
|
#modal_content {
|
|
|
|
display: flex;
|
2021-07-06 21:15:18 +00:00
|
|
|
flex-direction: column;
|
2021-06-04 12:05:05 +00:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2021-05-31 07:17:07 +00:00
|
|
|
background-color: #fefefe;
|
|
|
|
width: 100%;
|
2021-07-06 21:15:18 +00:00
|
|
|
height: 90%;
|
2021-05-31 07:17:07 +00:00
|
|
|
}
|