first commit
This commit is contained in:
97
js/cookieConsent.css
Normal file
97
js/cookieConsent.css
Normal file
@ -0,0 +1,97 @@
|
||||
.cookieConsentContainer {
|
||||
z-index: 999;
|
||||
|
||||
width: 350px;
|
||||
|
||||
min-height: 20px;
|
||||
|
||||
box-sizing: border-box;
|
||||
|
||||
padding: 30px 30px 30px 30px;
|
||||
|
||||
background: var(--uibg);
|
||||
|
||||
box-shadow: 0px 0px 10px 0px var(--uibg);
|
||||
|
||||
overflow: hidden;
|
||||
|
||||
position: fixed;
|
||||
|
||||
bottom: 30px;
|
||||
|
||||
right: 30px;
|
||||
|
||||
display: none;
|
||||
}
|
||||
|
||||
.cookieConsentContainer .cookieTitle a {
|
||||
|
||||
color: #ffffff;
|
||||
|
||||
font-size: 22px;
|
||||
|
||||
line-height: 20px;
|
||||
|
||||
display: block;
|
||||
}
|
||||
|
||||
.cookieConsentContainer .cookieDesc p {
|
||||
margin: 0;
|
||||
|
||||
padding: 0;
|
||||
|
||||
color: #ffffff;
|
||||
|
||||
font-size: 13px;
|
||||
|
||||
line-height: 20px;
|
||||
|
||||
display: block;
|
||||
|
||||
margin-top: 10px;
|
||||
}
|
||||
.cookieConsentContainer .cookieDesc a {
|
||||
|
||||
color: #ffffff;
|
||||
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.cookieConsentContainer .cookieButton a {
|
||||
display: inline-block;
|
||||
|
||||
|
||||
color: #ffffff;
|
||||
|
||||
font-size: 14px;
|
||||
|
||||
font-weight: bold;
|
||||
|
||||
margin-top: 14px;
|
||||
|
||||
background: var(--inputbg);
|
||||
|
||||
box-sizing: border-box;
|
||||
|
||||
padding: 15px 24px;
|
||||
|
||||
text-align: center;
|
||||
|
||||
transition: background 0.3s;
|
||||
}
|
||||
|
||||
.cookieConsentContainer .cookieButton a:hover {
|
||||
cursor: pointer;
|
||||
|
||||
filter: brightness(0.9);
|
||||
}
|
||||
|
||||
@media (max-width: 980px) {
|
||||
.cookieConsentContainer {
|
||||
bottom: 0px !important;
|
||||
|
||||
left: 0px !important;
|
||||
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user