close salles

This commit is contained in:
2019-06-05 12:59:18 +02:00
parent 5e033fe2be
commit 6da16d1bd0
5 changed files with 34 additions and 76 deletions

View File

@@ -6,9 +6,7 @@
@include inlineflex;
width: 100%;
margin: 20px 0;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
justify-content: center;
p{
padding: 0 20px;
@@ -31,7 +29,8 @@
.opt-out{
height: auto;
transform: translateY(70%);
-webkit-transform: translateY(70%);
transform: translateY(70%);
z-index: 9999;
position: fixed;
bottom: 0;
@@ -39,7 +38,9 @@
background: rgba(255,255,255,.5 );
text-align: center;
font-family: $Bold;
transition: background 0.3s ease, -webkit-transform 0.3s ease;
transition: transform 0.3s ease, background 0.3s ease;
transition: transform 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
iframe{
height: 110px;
}
@@ -53,11 +54,13 @@
cursor: pointer;
}
&.open{
transform: translateX(0);
-webkit-transform: translateX(0);
transform: translateX(0);
background: white;
transition: all 0.3s ease;
img{
transform: rotate(180deg);
-webkit-transform: rotate(180deg);
transform: rotate(180deg);
}
}
}