27 lines
438 B
CSS
27 lines
438 B
CSS
|
|
/* cookieconsent.css */
|
||
|
|
|
||
|
|
#cookieconsent {
|
||
|
|
position: fixed;
|
||
|
|
bottom: 0;
|
||
|
|
width: 100%;
|
||
|
|
background-color: #000;
|
||
|
|
color: #fff;
|
||
|
|
text-align: center;
|
||
|
|
padding: 10px;
|
||
|
|
z-index: 1000;
|
||
|
|
}
|
||
|
|
|
||
|
|
#cookieconsent button {
|
||
|
|
background-color: #f1d600;
|
||
|
|
color: #000;
|
||
|
|
border: none;
|
||
|
|
padding: 5px 10px;
|
||
|
|
margin-left: 10px;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
|
||
|
|
#cookieconsent a {
|
||
|
|
color: #f1d600;
|
||
|
|
text-decoration: underline;
|
||
|
|
}
|