40 lines
766 B
SCSS
40 lines
766 B
SCSS
#cookie-banner {
|
|
position: fixed;
|
|
top: 2.5rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: min(480px, calc(100vw - 2rem));
|
|
background: #fff;
|
|
border: 1px solid #e2e2e2;
|
|
border-radius: 12px;
|
|
padding: 1rem 1.25rem;
|
|
box-shadow: 0 4px 24px rgba(0,0,0,.08);
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
z-index: 9999;
|
|
transition: opacity 0.5s ease;
|
|
}
|
|
|
|
#cookie-banner.fade-out {
|
|
opacity: 0;
|
|
pointer-events: none;
|
|
}
|
|
|
|
#cookie-banner p { margin: 0; font-size: 14px; flex: 1; }
|
|
|
|
#cookie-banner button {
|
|
margin: 0.1rem 0;
|
|
padding: .45rem 1rem;
|
|
border-radius: 8px;
|
|
border: 1px solid #ccc;
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#cookie-accept {
|
|
background: #0b913a; color: #fff; border-color: #1a1a1a;
|
|
}
|
|
|