oficinasuport-wp-theme/sass/components/navigation/_navigation.scss

150 lines
2.0 KiB
SCSS
Raw Normal View History

2022-11-29 19:49:21 +01:00
.main-navigation,.secondary-navigation {
//display: block;
//width: 100%;
ul {
display: none;
list-style: none;
margin: 0;
padding-left: 0;
ul {
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
float: left;
position: absolute;
top: 100%;
left: -999em;
z-index: 99999;
ul {
left: -999em;
top: 0;
}
li {
&:hover > ul,
&.focus > ul {
display: block;
left: auto;
}
}
a {
width: 200px;
}
:hover > a,
.focus > a {
}
a:hover,
a.focus {
}
}
li:hover > ul,
li.focus > ul {
left: auto;
}
}
li {
position: relative;
&:hover > a,
&.focus > a {
}
}
a {
display: flex;
align-items: center;
min-height: 100%;
padding: 0 1rem;
text-decoration: none;
font-size: 1rem;
}
.current_page_item > a,
.current-menu-item > a,
.current_page_ancestor > a,
.current-menu-ancestor > a {
font-weight: bold;
}
.current-menu-item::after {
border-bottom: 2px solid #000;
display: block;
content: "";
width: 60%;
margin: 0 20%;
}
}
.main-navigation {
}
.secondary-navigation {
padding: 1.5rem 0;
a {
text-transform: uppercase;
}
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
display: block;
}
@media screen and (min-width: 37.5em) {
2022-11-29 19:49:21 +01:00
.site-branding {
//display: inline-block;
//float: left;
2022-11-29 19:49:21 +01:00
}
.custom-logo {
2022-11-30 12:30:29 +01:00
width: 11rem;
2022-11-29 19:49:21 +01:00
margin: 1rem;
}
2022-11-30 18:23:52 +01:00
//.menu-primary-menu-container {
// height: 100%;
//}
//.menu-primary-menu-container,
//.menu-secondary-menu-container {
// display: flex;
// justify-content: end;
//}
.menu-toggle {
display: none;
}
.main-navigation ul {
display: flex;
justify-content: end;
2022-11-30 18:23:52 +01:00
//height:100%;
}
.secondary-navigation ul {
display: flex;
}
}
.comment-navigation,
.posts-navigation,
.post-navigation {
.site-main & {
margin: 0 0 1.5em;
}
.nav-links {
display: flex;
}
.nav-previous {
flex: 1 0 50%;
}
.nav-next {
text-align: end;
flex: 1 0 50%;
}
}