added cookie banner

This commit is contained in:
DerTyp187
2021-11-16 12:38:55 +01:00
parent b936f6c42f
commit e1c3cf484d
2 changed files with 53 additions and 3 deletions

View File

@@ -106,4 +106,42 @@ footer .footer-links a{
footer .footer-links a:hover{
color: white;
}
/* COOKIE BANNER */
#cookie_banner{
position: absolute;
width:100%;
height: 60px;
background-color: rgb(0, 0, 0);
bottom:0;
z-index: 100;
}
#cookie_banner p{
font-size: 13pt;
color: white;
font-weight: bold;
margin-top: 18px;
margin-left: 200px;
}
#cookie_banner button{
float: right;
margin-right: 200px;
width: 150px;
height: 40px;
margin-top: -30px;
border: 3px solid green;
background-color: rgba(77, 77, 77, 0.5);
color: white;
font-size: 15pt;
font-weight: bold;
cursor: pointer;
transition: 0.1s;
transition-timing-function: linear;
}
#cookie_banner button:hover{
background-color: rgba(77, 77, 77, 0.801);
border: 3px solid rgb(1, 180, 1);
}