mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-09-10 10:16:21 +02:00
48 lines
882 B
SCSS
48 lines
882 B
SCSS
@use "../../assets/scss/variables" as *;
|
|
|
|
$shadow: 0px -1px 5px rgba(50, 50, 50, 0.75);
|
|
|
|
.cookieBar {
|
|
align-items: baseline;
|
|
background: $color-bg;
|
|
border-top: 1px solid $color-gray-border;
|
|
bottom: 0px;
|
|
|
|
-webkit-box-shadow: $shadow;
|
|
-moz-box-shadow: $shadow;
|
|
box-shadow: $shadow;
|
|
color: $color-base;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
left: 0px;
|
|
position: fixed;
|
|
width: 100%;
|
|
z-index: 999;
|
|
}
|
|
|
|
.content {
|
|
flex: 1 0 300px;
|
|
margin: 15px;
|
|
}
|
|
|
|
.button {
|
|
background: $color-bg;
|
|
border: 1px solid $color-gray-border;
|
|
border-radius: $button-border-radius;
|
|
color: $color-base;
|
|
cursor: pointer;
|
|
flex: 0 0 auto;
|
|
font-size: $typographic-base-font-size;
|
|
font-weight: normal;
|
|
height: $button-height;
|
|
margin: 15px;
|
|
padding: 5px 10px;
|
|
text-align: center;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: $color-primary;
|
|
}
|
|
}
|