Files
new.anwisystems.com/enterprise/assets/sass/components/nav/_main-menu.scss
T

48 lines
754 B
SCSS
Raw Normal View History

2024-03-08 17:28:57 +05:30
/*------------------*
# Main-menu
*------------------*/
.main-menu {
li {
margin: 0 1px;
position: relative;
a {
font-weight: fontweight(semi-bold);
display: block;
padding: 20px;
text-align: center;
line-height: 30px;
font-size: 14px;
text-transform: uppercase;
@include max-screen(992, 1199) {
padding: 15px;
font-size: 13px;
}
i {
font-size: 15px;
position: relative;
top: 1px;
}
}
}
}
// theme1
.theme1 {
li {
a {
color: $color-dark;
}
&:hover > a {
color: $theme-color;
}
&.active > a {
color: $theme-color;
}
}
}
/*------------------*
# Main-menu END
*------------------*/