54 lines
1012 B
SCSS
Raw Normal View History

header{
display: flex;
justify-content: space-between;
align-items: center;
height: 80px;
box-sizing: border-box;
padding: 0 20px;
.logo{
height: 60px;
a{
img{
max-width: 300px;
max-height: 60px;
height: 60px;
}
}
}
nav{
display: flex;
align-self: flex-end;
font-size: 17px;
2022-06-29 14:28:04 +02:00
// text-transform: uppercase;
font-weight: 600;
span.menu_item{
2022-06-29 09:18:13 +02:00
margin-left:32px;
border-bottom: 3px transparent solid;
a{
color: $color_text_dark;
text-decoration: none;
line-height: 30px;
transition: 0.2s;
&:hover{
color: $color_blue;
}
}
&.active{
2022-06-30 10:44:23 +02:00
// border-bottom: 3px $color_blue solid;
}
}
}
}