2020-09-16 15:06:26 +00:00
|
|
|
.site-header{
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 2;
|
|
|
|
transition: background-color .3s ease-out;
|
|
|
|
|
|
|
|
@include atMedium(){
|
|
|
|
position: fixed;
|
2020-09-17 15:21:49 +00:00
|
|
|
background-color: rgba(#000, 0.4);
|
2020-09-16 15:06:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&__btn-container{
|
|
|
|
@include atMedium(){
|
2020-09-17 15:48:05 +00:00
|
|
|
padding: 32px 0px 32px 0px;
|
2020-09-16 15:06:26 +00:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__menu-content{
|
|
|
|
opacity: 0;
|
|
|
|
transform: scale(1.2);
|
|
|
|
transtion: all .3s ease-out;
|
|
|
|
position: relative;
|
|
|
|
z-index: -10;
|
|
|
|
padding-top: 90px;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
@include atMedium(){
|
|
|
|
opacity: 1;
|
|
|
|
z-index: 1;
|
|
|
|
padding-top: 0;
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__logo{
|
|
|
|
position: absolute;
|
2020-09-17 15:48:05 +00:00
|
|
|
top: 3px;
|
2020-09-16 15:06:26 +00:00
|
|
|
left: 50%;
|
|
|
|
transform-origin: 50% 0%;
|
|
|
|
transform: translateX(-50%) scale(.8);
|
|
|
|
transition: transform .3s ease-out;
|
|
|
|
|
|
|
|
@include atMedium(){
|
2020-09-17 15:21:49 +00:00
|
|
|
position: relative;
|
|
|
|
float: left;
|
2020-09-16 15:06:26 +00:00
|
|
|
left: auto;
|
|
|
|
transform: translateX(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|