38 lines
802 B
CSS
38 lines
802 B
CSS
.overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: rgba(0, 0, 0, 0.25);
|
|
display: flex;
|
|
justify-content: center;
|
|
z-index: 1000;
|
|
align-items: flex-start;
|
|
overflow-y: auto;
|
|
padding: 40px 0;
|
|
}
|
|
|
|
.modal {
|
|
padding: 20px 20px 20px 20px;
|
|
border-radius: 20px;
|
|
min-width: 300px;
|
|
max-width: 70%;
|
|
max-height: none;
|
|
position: relative;
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
|
|
width: clamp(300px, 50vw, 600px);
|
|
border: 1px solid rgba(200, 200, 200, 0.3);
|
|
background: rgba(255, 255, 255, 0.5);
|
|
backdrop-filter: blur(10px);
|
|
-webkit-backdrop-filter: blur(10px);
|
|
color: #000;
|
|
outline: none;
|
|
}
|
|
|
|
.modalFooter {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|