57 lines
933 B
SCSS
Raw Normal View History

.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;
background-color: white;
border-top: 1px #666 solid;
box-shadow: 0px 0px 5px 1px #999;
.left{
margin-right: 50px;
text-align: left;
p{
margin: 5px 0;
line-height: 22px;
}
}
.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;
}
}
}