1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-02 13:24:20 +01:00
fab-manager/app/assets/stylesheets/modules/cookies.scss

34 lines
638 B
SCSS
Raw Normal View History

2019-06-13 11:28:55 +02:00
.cookies-consent {
2019-06-12 16:53:37 +02:00
display: flex;
position: fixed;
2019-06-13 11:28:55 +02:00
bottom: 3rem;
left: 3rem;
2019-06-12 16:53:37 +02:00
width: 40rem;
2019-06-13 11:28:55 +02:00
background-color: #f5f5f5;
padding: 3rem;
2019-06-12 16:53:37 +02:00
flex-direction: column;
2019-06-13 11:28:55 +02:00
z-index: 100;
2020-03-24 18:17:26 +01:00
-webkit-box-shadow: 0 4px 10px 2px rgba(224, 224, 224, 0.43);
-moz-box-shadow: 0 4px 10px 2px rgba(224, 224, 224, 0.43);
box-shadow: 0 4px 10px 2px rgba(224, 224, 224, 0.43);
2019-06-12 16:53:37 +02:00
.cookies-actions {
2019-06-13 11:28:55 +02:00
display: flex;
2020-03-24 18:17:26 +01:00
2019-06-12 16:53:37 +02:00
button {
2019-06-13 11:28:55 +02:00
flex-basis: 50%;
2019-06-12 16:53:37 +02:00
}
2020-03-24 18:17:26 +01:00
2019-06-12 16:53:37 +02:00
button.decline {
background-color: transparent;
border: 0;
}
2020-03-24 18:17:26 +01:00
2019-06-12 16:53:37 +02:00
button.accept {
background-color: red;
border: 0;
2019-06-13 11:28:55 +02:00
font-size: 17px;
2019-06-12 16:53:37 +02:00
}
}
}