66 lines
1.0 KiB
SCSS
66 lines
1.0 KiB
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%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.aai .cookie_notice{
|
|
|
|
button{
|
|
background-color: #e35205;
|
|
|
|
&:hover{
|
|
background-color: #fa6c21;
|
|
}
|
|
}
|
|
} |