nuitdelinfo_2021/static/scss/layouts/nav.scss

57 lines
1 KiB
SCSS
Raw Normal View History

2021-12-02 22:30:17 +01:00
nav{
background-color: $background2;
padding: 5px 20px;
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
2021-12-03 00:06:04 +01:00
position: fixed;
top: 0;
2021-12-03 01:24:17 +01:00
z-index: 9990;
2021-12-03 00:06:04 +01:00
left: 0;
width: -webkit-fill-available;
2021-12-02 22:30:17 +01:00
.logo{
margin: 0;
cursor: pointer;
font-size: 50px;
@include font-courgette;
2021-12-03 04:53:31 +01:00
color: $accent;
2021-12-02 22:30:17 +01:00
margin-right: 30px;
}
.left{
display: flex;
align-items: center;
.submenu{
display: flex;
align-items: center;
a{
font-size: 20px;
color: $light;
padding: 0 20px;
}
}
}
.right{
display: flex;
justify-content: right;
align-items: center;
img{
width: 50px;
cursor: pointer;
border: 2px solid $light;
transition-duration: 0.3s;
&:hover{
border-color: $accent;
}
}
.search{
color: $light;
font-size: 50px;
margin-right: 20px;
cursor: pointer;
transition-duration: 0.3s;
&:hover{
color: $accent;
}
}
}
}