29 lines
736 B
CSS
29 lines
736 B
CSS
|
|
/* SEARCH MODAL */
|
||
|
|
.modal-backdrop {
|
||
|
|
position: fixed;
|
||
|
|
inset: 0;
|
||
|
|
background: rgba(0, 0, 0, 0.6);
|
||
|
|
backdrop-filter: blur(5px);
|
||
|
|
z-index: 9999;
|
||
|
|
display: none;
|
||
|
|
align-items: flex-start;
|
||
|
|
justify-content: center;
|
||
|
|
padding-top: 15vh;
|
||
|
|
animation: fadeIn 0.2s ease-out;
|
||
|
|
}
|
||
|
|
|
||
|
|
.modal-backdrop.active {
|
||
|
|
display: flex;
|
||
|
|
}
|
||
|
|
|
||
|
|
.modal-content {
|
||
|
|
width: 100%;
|
||
|
|
max-width: 600px;
|
||
|
|
background: var(--color-void-100);
|
||
|
|
border: 1px solid var(--color-void-300);
|
||
|
|
border-radius: var(--radius-lg);
|
||
|
|
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 219, 245, 0.1);
|
||
|
|
padding: var(--space-6);
|
||
|
|
transform: translateY(-20px);
|
||
|
|
animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
|
||
|
|
}
|