Spaces:
Sleeping
Sleeping
File size: 1,196 Bytes
f4854a1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | /* Modal Styles */
.modal-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(4px);
z-index: 1100;
display: flex;
align-items: center;
justify-content: center;
padding: 1.5rem;
}
.modal {
background: white;
border-radius: var(--radius-xl);
box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
width: 100%;
max-height: 90vh;
overflow-y: auto;
}
.modal--sm { max-width: 400px; }
.modal--md { max-width: 560px; }
.modal--lg { max-width: 760px; }
.modal--xl { max-width: 960px; }
.modal--full { max-width: 100%; height: 90vh; }
.modal__header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1.25rem 1.5rem;
border-bottom: 1px solid var(--color-neutral-100);
}
.modal__title {
font-size: 1.15rem;
font-weight: 700;
color: var(--color-neutral-900);
}
.modal__close {
display: flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
border-radius: 50%;
color: var(--color-neutral-500);
transition: all 0.2s ease;
}
.modal__close:hover {
background: var(--color-neutral-100);
color: var(--color-neutral-800);
}
.modal__body {
padding: 1.5rem;
}
|