mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-10 02:48:40 +00:00
67 lines
1.2 KiB
SCSS
67 lines
1.2 KiB
SCSS
#cookie_cc {
|
|
display: none;
|
|
|
|
&:checked #cookieCF {
|
|
display: none;
|
|
}
|
|
|
|
&:not(:checked) + #cookieCF {
|
|
display: flex;
|
|
}
|
|
}
|
|
|
|
#cookieCF {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: rgba(0, 0, 0, .5);
|
|
font-weight: 100;
|
|
|
|
input[type=radio] {
|
|
display: none;
|
|
}
|
|
|
|
#cookieCF_simple label, .button, input[type=submit],
|
|
#cookieCF_c label, .button, input[type=submit]
|
|
{
|
|
margin: 0;
|
|
}
|
|
|
|
.secondary {
|
|
background: none;
|
|
border: 2px solid var(--btn-bg);
|
|
color: var(--btn-bg) !important;
|
|
}
|
|
|
|
.consent_element {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
form {
|
|
background : #fff;
|
|
border: 1px solid var(--bborder);
|
|
display: inline-block;
|
|
padding: 1rem;
|
|
border-radius: 3px;
|
|
}
|
|
}
|
|
|
|
#cookieCF_db,
|
|
#cookieCF_cb {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 10px;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
#cookieCF_simple + div, #cookieCF_c + div {
|
|
display: none;
|
|
}
|
|
|
|
#cookieCF_simple:checked + div, #cookieCF_c:checked + div {
|
|
display: block;
|
|
} |