add tarteaucitron

This commit is contained in:
2019-06-16 17:47:42 +02:00
parent fba3521dff
commit a6f0a9e7bd
9 changed files with 844 additions and 44 deletions

View File

@@ -1298,3 +1298,38 @@
.ok{
cursor: pointer;
}
.cookie-banner {
display: none;
position: fixed;
top: 0;
width: 100%;
&.active {
display: block;
}
}
// Overlay de la boite de dialogue
.cookie-inform-and-ask {
background-color: green;
display: none;
height: 100%;
left: 0;
position: fixed;
top: 0;
width: 100%;
&.active {
display: block;
}
// La vraie boîte de dialogue
.cookie-dialog {
left: 50%;
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
width: 70%;
}
}

View File

@@ -0,0 +1,4 @@
#tarteaucitronBack{
background: yellow;
}