56 lines
895 B
SCSS

.cookie_notice{
position: fixed;
bottom: 0;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: auto;
box-sizing: border-box;
padding: 15px 20px;
color: white;
background-color: rgba(96,96,96,.8);
.left{
margin-right: 50px;
text-align: left;
p{
margin: 5px 0;
line-height: 22px;
}
a{
color: white;
font-weight: bold;
&:hover{
color: white;
}
}
}
.right{
button{
padding: 13px;
font-weight: 600;
text-transform: none;
background-color: $color_blue;
border-radius: 5px;
&:hover{
background-color: lighten($color_blue, 10%);
}
}
}
}