46 lines
879 B
SCSS
46 lines
879 B
SCSS
.LP-Menu{
|
|
.LP-Menu__List {
|
|
list-style-type: none;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.LP-Menu__Item {
|
|
padding: 15px 0;
|
|
margin: 0;
|
|
width: 100px;
|
|
text-align: center;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.LP-Link__Text {
|
|
color: $-grey;
|
|
font-weight: bold;
|
|
text-shadow: 0px 0px 20px white;
|
|
&:hover{
|
|
color: $-wine-red;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media(max-width: $-viewport-medium){
|
|
.LP-Menu{
|
|
|
|
.LP-Menu__List{
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start
|
|
}
|
|
}
|
|
}
|
|
|
|
@media(max-width: $-viewport-extra-small){
|
|
.LP-Menu{
|
|
.LP-Menu__List {
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
} |