mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
48 lines
774 B
CSS
48 lines
774 B
CSS
.modal {
|
|
z-index: 99;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
}
|
|
|
|
.modalContent {
|
|
display: flex;
|
|
align-items: stretch;
|
|
max-height: 80%;
|
|
width: 50%;
|
|
max-width: 52%;
|
|
width: auto;
|
|
position: fixed;
|
|
background: var(--background-color);
|
|
height: auto;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
border-radius: 8px;
|
|
padding-top: 38px;
|
|
padding-bottom: 25px;
|
|
padding-right: 14px;
|
|
padding-left: 16px;
|
|
cursor: default;
|
|
}
|
|
|
|
.close {
|
|
cursor: pointer;
|
|
font-size: 16.5px;
|
|
position: fixed;
|
|
top: 5px;
|
|
right: 10px;
|
|
margin-bottom: 10px;
|
|
text-align: right;
|
|
display: inline;
|
|
}
|
|
|
|
.children {
|
|
max-height: 100%;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
overflow-x: auto;
|
|
}
|