mirror of
https://github.com/samuelcolvin/FastUI.git
synced 2023-12-01 22:22:11 +03:00
50 lines
752 B
CSS
50 lines
752 B
CSS
.fu-modal-overlay {
|
|
position: fixed;
|
|
display: none;
|
|
z-index: 1;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.fu-modal-overlay.open {
|
|
display: block;
|
|
}
|
|
|
|
.fu-modal-content {
|
|
background: white;
|
|
margin: 100px auto;
|
|
border: 1px solid #888;
|
|
width: 95%;
|
|
max-width: 500px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.fu-model-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 10px 20px;
|
|
border-bottom: 1px solid #ccc;
|
|
}
|
|
|
|
.fu-close {
|
|
color: #aaa;
|
|
font-size: 28px;
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.fu-modal-body {
|
|
padding: 20px;
|
|
}
|
|
|
|
.fu-modal-footer {
|
|
display: flex;
|
|
justify-content: right;
|
|
padding: 10px 20px 20px;
|
|
border-top: 1px solid #ccc;
|
|
}
|