You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.1 KiB
60 lines
1.1 KiB
|
|
header{
|
|
background: $dark-grey;
|
|
height: 50px;
|
|
width: 100%;
|
|
position: fixed;
|
|
z-index: 100;
|
|
|
|
&.red{
|
|
background: $red;
|
|
}
|
|
|
|
.container{
|
|
.row{
|
|
height: 50px;
|
|
|
|
.logo{
|
|
height: 25px;
|
|
}
|
|
|
|
.menu{
|
|
text-align: right;
|
|
ul{
|
|
list-style: none;
|
|
margin: 0;
|
|
right: 10px;
|
|
li{
|
|
display: inline-block;
|
|
color: white;
|
|
margin: 10px;
|
|
padding: 7px 0 2px 0;
|
|
font-size: $font-12;
|
|
letter-spacing: 1px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
border-bottom: 4px solid $dark-grey;
|
|
cursor: pointer;
|
|
transition: .4s;
|
|
|
|
a{
|
|
.fa{
|
|
font-size: $font-14;
|
|
}
|
|
}
|
|
|
|
&.active,
|
|
&:hover{
|
|
border-bottom: 4px solid $red;
|
|
a{
|
|
&:hover{
|
|
color: white;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|