71 lines
1.2 KiB
SCSS
71 lines
1.2 KiB
SCSS
// header{
|
|
// z-index: 999;
|
|
// position: relative;
|
|
// @include inlineflex();
|
|
// justify-content: center;
|
|
// width: 100%;
|
|
// border-bottom: 1px solid $light-blue;
|
|
// height: 105px;
|
|
// nav{
|
|
// @include inlineflex();
|
|
// justify-content: space-around;
|
|
// height: 100px;
|
|
// width: 75%;
|
|
// flex-wrap: nowrap;
|
|
// .logo{
|
|
// display: flex;
|
|
// a{
|
|
// display: block;
|
|
// margin: auto;
|
|
// }
|
|
// }
|
|
// .reso{
|
|
// @include inlineflex;
|
|
// flex-wrap: nowrap;
|
|
// a{
|
|
// display: block;
|
|
// width: 35px;
|
|
// margin: auto 5px;
|
|
// }
|
|
// }
|
|
// }
|
|
// }
|
|
//
|
|
//
|
|
|
|
header{
|
|
width: 100%;
|
|
display: flex;
|
|
height: 105px;
|
|
z-index: 999;
|
|
border-bottom: 1px solid $light-blue;
|
|
& > nav{
|
|
margin: auto;
|
|
min-width: 1100px;
|
|
width: 70%;
|
|
display: inline-flex;
|
|
justify-content: space-between;
|
|
.navTrigger{
|
|
display: none;
|
|
}
|
|
.logo{
|
|
width: 150px;
|
|
}
|
|
.dropmenu{
|
|
width: 70%;
|
|
& > ul{
|
|
height: 100%;
|
|
}
|
|
}
|
|
.reso{
|
|
display: inline-flex;
|
|
width: auto;
|
|
a{
|
|
display: block;
|
|
width: 35px;
|
|
margin: auto 5px;
|
|
}
|
|
}
|
|
}
|
|
}
|