54 lines
991 B
SCSS
Raw Normal View History

2019-04-03 15:29:46 +02:00
#header{
2019-04-05 00:19:26 +02:00
z-index: 999;
position: relative;
2019-04-03 15:29:46 +02:00
nav{
@include inlineflex();
2019-04-05 00:19:26 +02:00
justify-content: space-between;
2019-04-03 15:29:46 +02:00
height: 100px;
2019-04-05 00:19:26 +02:00
width: auto;
a{
padding: 10px;
}
2019-04-03 15:29:46 +02:00
& > ul{
@include inlineflex();
2019-04-05 00:19:26 +02:00
&> li{
2019-04-03 15:29:46 +02:00
margin-left: 10px;
2019-04-05 00:19:26 +02:00
padding: 0 10px 10px 10px;
2019-04-03 15:29:46 +02:00
& > ul{
display: none;
}
2019-04-05 00:19:26 +02:00
&:nth-last-child(-n+2){
& > a{
display: block;
height: 100px;
background: rgb(84, 153, 183);
color: white;
}
}
&:hover{
& > ul{
display: block;
a{
display: block;
height: 50px;
background: white;
padding: 10px;
}
}
}
}
}
.reso{
@include inlineflex();
flex-wrap: nowrap;
width: 30px;
img{
margin-left: 10px;
2019-04-02 19:54:29 +02:00
}
}
2019-04-05 00:19:26 +02:00
.desktop-menu{
@include inlineflex;
}
2019-04-02 19:54:29 +02:00
}
}