54 lines
1.0 KiB
CSS
54 lines
1.0 KiB
CSS
|
|
.modal-overlay {
|
||
|
|
display: none;
|
||
|
|
position: fixed;
|
||
|
|
top: 0; left: 0; right: 0; bottom: 0;
|
||
|
|
background-color: rgba(0, 0, 0, 0.7);
|
||
|
|
z-index: 1000;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
backdrop-filter: blur(3px);
|
||
|
|
animation: fadeIn 0.2s ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
.modal-window {
|
||
|
|
background-color: var(--bg2);
|
||
|
|
border: 1px solid var(--border);
|
||
|
|
width: 100%;
|
||
|
|
max-width: 500px;
|
||
|
|
box-shadow: 0 10px 30px rgba(0,0,0,0.5);
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
|
||
|
|
.modal-header {
|
||
|
|
padding: 15px 20px;
|
||
|
|
border-bottom: 1px solid var(--border);
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
background-color: var(--bg3);
|
||
|
|
|
||
|
|
.modal-title {
|
||
|
|
font-weight: 600;
|
||
|
|
font-size: 1.1rem;
|
||
|
|
color: var(--text);
|
||
|
|
}
|
||
|
|
|
||
|
|
.modal-close {
|
||
|
|
background: none;
|
||
|
|
border: none;
|
||
|
|
color: var(--text2);
|
||
|
|
cursor: pointer;
|
||
|
|
transition: color 0.2s;
|
||
|
|
|
||
|
|
&:hover {
|
||
|
|
color: var(--text);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
.modal-content {
|
||
|
|
padding: 20px;
|
||
|
|
}
|