accept cookie added and image updated
This commit was merged in pull request #30.
This commit is contained in:
@@ -100,6 +100,42 @@ a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* ACCEPT COOKIE SLIDE UP EFFECT */
|
||||
.cookies-wrapper{
|
||||
width: 90%;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
background-color: white;
|
||||
box-shadow: 0px 0px 1px black;
|
||||
z-index: 999;
|
||||
}
|
||||
|
||||
.slide-up {
|
||||
animation: slideup 1s linear forwards;
|
||||
}
|
||||
|
||||
.slide-down {
|
||||
animation: slidedown 1s linear forwards;
|
||||
}
|
||||
|
||||
@keyframes slideup {
|
||||
0%{bottom: -50%;}
|
||||
100%{bottom: 0;}
|
||||
}
|
||||
|
||||
@keyframes slidedown {
|
||||
0%{bottom: 0;}
|
||||
100%{bottom: -50%; display: none;}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 992px) {
|
||||
.cookies-wrapper p, .cookies-wrapper button {
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
}
|
||||
}
|
||||
/* END ACCEPT COOKIE SLIDE UP EFFECT */
|
||||
|
||||
@media (prefers-color-scheme: dark) {
|
||||
html {
|
||||
color-scheme: dark;
|
||||
|
||||
Reference in New Issue
Block a user