forked from M3-Academy/vtex-cms-template-atualizado
Cria o menu mobile
This commit is contained in:
parent
e26458460b
commit
bbc9681b84
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
@import "./partials/header";
|
@import "./partials/header";
|
||||||
@import "./partials/menu";
|
@import "./partials/menu";
|
||||||
|
@import "./partials/search";
|
||||||
@import "./partials/barraDeVantagens";
|
@import "./partials/barraDeVantagens";
|
||||||
@import "./partials/footer";
|
@import "./partials/footer";
|
||||||
@import "./partials/breadcrumb";
|
@import "./partials/breadcrumb";
|
||||||
|
@ -26,46 +26,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.busca {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
padding: 8px 0;
|
|
||||||
border-bottom: 1px solid $white-500;
|
|
||||||
|
|
||||||
legend,
|
|
||||||
label,
|
|
||||||
select {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.fulltext-search-box {
|
|
||||||
flex: 1;
|
|
||||||
height: 23px;
|
|
||||||
padding: 0;
|
|
||||||
border: 0;
|
|
||||||
outline: 0;
|
|
||||||
font-size: 10px;
|
|
||||||
line-height: 12px;
|
|
||||||
color: $white-500;
|
|
||||||
background: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
.btn-buscar {
|
|
||||||
width: 23px;
|
|
||||||
height: 23px;
|
|
||||||
padding: 0;
|
|
||||||
border: 0;
|
|
||||||
outline: 0;
|
|
||||||
font-size: 0;
|
|
||||||
background-color: transparent;
|
|
||||||
|
|
||||||
@extend .sprite;
|
|
||||||
@extend .sprite-search-icon;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.user-items {
|
.user-items {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -12,21 +12,85 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.menu-header {
|
||||||
|
&__top-wrapper {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__text {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 15px;
|
||||||
|
color: $gray-200;
|
||||||
|
|
||||||
|
i {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__close-button {
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
outline: 0;
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
&__search-box {
|
||||||
|
background: $black-500;
|
||||||
|
|
||||||
|
.busca {
|
||||||
|
padding: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.main-menu {
|
.main-menu {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
|
@include mq(lg, max) {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: map-get($z-index, level-5);
|
||||||
|
transform: translateX(-100%);
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: $white-500;
|
||||||
|
}
|
||||||
|
|
||||||
&__departments {
|
&__departments {
|
||||||
display: flex;
|
display: flex;
|
||||||
height: 100%;
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
|
@include mq(lg, max) {
|
||||||
|
flex: 1;
|
||||||
|
flex-direction: column;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include mq(lg, min) {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__department {
|
&__department {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-right: 40px;
|
|
||||||
|
@include mq(lg, max) {
|
||||||
|
border-bottom: 1px solid $gray-100;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(lg, min) {
|
@include mq(lg, min) {
|
||||||
|
margin-right: 40px;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
.main-menu__department-link {
|
.main-menu__department-link {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
@ -48,6 +112,15 @@
|
|||||||
line-height: 15px;
|
line-height: 15px;
|
||||||
color: $white-500;
|
color: $white-500;
|
||||||
|
|
||||||
|
@include mq(lg, max) {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
width: 100%;
|
||||||
|
padding: 20px 16px;
|
||||||
|
color: $black-500;
|
||||||
|
}
|
||||||
|
|
||||||
@include mq(lg, min) {
|
@include mq(lg, min) {
|
||||||
&::after {
|
&::after {
|
||||||
content: attr(title);
|
content: attr(title);
|
||||||
@ -59,20 +132,44 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__account-link {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
height: 64px;
|
||||||
|
font-size: 10px;
|
||||||
|
line-height: 12px;
|
||||||
|
color: $white-500;
|
||||||
|
background: $black-500;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.submenu {
|
.submenu {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: calc(100% + 32px);
|
|
||||||
left: 0;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding: 30px 0 43px;
|
|
||||||
z-index: map-get($z-index, level-4);
|
@include mq(lg, max) {
|
||||||
background: rgba($white-500, 0.95);
|
top: 0;
|
||||||
box-shadow: 0px 4px 4px rgba($black-500, 0.02);
|
left: 100%;
|
||||||
opacity: 0;
|
height: 100%;
|
||||||
pointer-events: none;
|
overflow: auto;
|
||||||
transition: all 0.2s ease-in-out;
|
padding-bottom: 34px;
|
||||||
|
background: $white-500;
|
||||||
|
}
|
||||||
|
|
||||||
|
@include mq(lg, min) {
|
||||||
|
position: absolute;
|
||||||
|
top: calc(100% + 32px);
|
||||||
|
left: 0;
|
||||||
|
padding: 30px 0 43px;
|
||||||
|
z-index: map-get($z-index, level-4);
|
||||||
|
background: rgba($white-500, 0.95);
|
||||||
|
box-shadow: 0px 4px 4px rgba($black-500, 0.02);
|
||||||
|
opacity: 0;
|
||||||
|
pointer-events: none;
|
||||||
|
transition: all 0.2s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
&::before {
|
&::before {
|
||||||
content: '';
|
content: '';
|
||||||
@ -84,15 +181,49 @@
|
|||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
@include mq(lg, max) {
|
||||||
|
padding: 0 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__return-button {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
width: 100%;
|
||||||
|
margin-bottom: 34px;
|
||||||
|
padding: 16px;
|
||||||
|
border: solid $gray-100;
|
||||||
|
border-width: 0 0 1px 0;
|
||||||
|
outline: 0;
|
||||||
|
text-align: left;
|
||||||
|
background: transparent;
|
||||||
|
|
||||||
|
i {
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&__title {
|
&__title {
|
||||||
margin: 0 0 8px;
|
margin: 0 0 8px;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
|
|
||||||
|
@include mq(lg, max) {
|
||||||
|
font-size: 12px;
|
||||||
|
line-height: 14px;
|
||||||
|
text-decoration: underline;
|
||||||
|
color: $blue-500;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__categories-wrapper {
|
&__categories-wrapper {
|
||||||
display: flex;
|
margin-bottom: 16px;
|
||||||
margin-bottom: 8px;
|
|
||||||
|
@include mq(lg, min) {
|
||||||
|
display: flex;
|
||||||
|
margin-bottom: 8px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__categories {
|
&__categories {
|
||||||
|
39
src/arquivos/sass/partials/_search.scss
Normal file
39
src/arquivos/sass/partials/_search.scss
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
.busca {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
padding: 8px 0;
|
||||||
|
border-bottom: 1px solid $white-500;
|
||||||
|
|
||||||
|
legend,
|
||||||
|
label,
|
||||||
|
select {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fulltext-search-box {
|
||||||
|
flex: 1;
|
||||||
|
height: 23px;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
outline: 0;
|
||||||
|
font-size: 10px;
|
||||||
|
line-height: 12px;
|
||||||
|
color: $white-500;
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-buscar {
|
||||||
|
width: 23px;
|
||||||
|
height: 23px;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
outline: 0;
|
||||||
|
font-size: 0;
|
||||||
|
background-color: transparent;
|
||||||
|
|
||||||
|
@extend .sprite;
|
||||||
|
@extend .sprite-search-icon;
|
||||||
|
}
|
||||||
|
}
|
@ -12,6 +12,9 @@ $font-height: 1.5;
|
|||||||
$black-500: #000;
|
$black-500: #000;
|
||||||
$white-500: #fff;
|
$white-500: #fff;
|
||||||
$blue-500: #00C8FF;
|
$blue-500: #00C8FF;
|
||||||
|
|
||||||
|
$gray-100: #E0E0E0;
|
||||||
|
$gray-200: #828282;
|
||||||
$gray-500: #333333;
|
$gray-500: #333333;
|
||||||
|
|
||||||
// universal
|
// universal
|
||||||
|
BIN
src/arquivos/sprite/close-menu-icon.png
Normal file
BIN
src/arquivos/sprite/close-menu-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 348 B |
BIN
src/arquivos/sprite/lock-icon.png
Normal file
BIN
src/arquivos/sprite/lock-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 540 B |
BIN
src/arquivos/sprite/menu-left-arrow-icon.png
Normal file
BIN
src/arquivos/sprite/menu-left-arrow-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 275 B |
BIN
src/arquivos/sprite/menu-mobile-arrow-icon.png
Normal file
BIN
src/arquivos/sprite/menu-mobile-arrow-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 272 B |
@ -1,9 +1,34 @@
|
|||||||
<nav class="main-menu">
|
<nav class="main-menu">
|
||||||
|
<div class="menu-header">
|
||||||
|
<div class="menu-header__top-wrapper">
|
||||||
|
<div class="menu-header__text">
|
||||||
|
<i class="sprite sprite-lock-icon"></i>
|
||||||
|
COMPRA 100% SEGURA
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button class="menu-header__close-button">
|
||||||
|
<i class="sprite sprite-close-menu-icon"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="menu-header__search-box">
|
||||||
|
<vtex.cmc:fullTextSearchBox />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<ul class="main-menu__departments">
|
<ul class="main-menu__departments">
|
||||||
<li class="main-menu__department">
|
<li class="main-menu__department">
|
||||||
<a class="main-menu__department-link" href="#" title="LOREM IPSUM">LOREM IPSUM</a>
|
<a class="main-menu__department-link" href="#" title="LOREM IPSUM">
|
||||||
|
LOREM IPSUM
|
||||||
|
<i class="sprite sprite-menu-mobile-arrow-icon"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
<div class="submenu">
|
<div class="submenu">
|
||||||
|
<button class="submenu__return-button">
|
||||||
|
<i class="sprite sprite-menu-left-arrow-icon"></i>
|
||||||
|
VOLTAR
|
||||||
|
</button>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h2 class="submenu__title">LOREM IPSUM</h2>
|
<h2 class="submenu__title">LOREM IPSUM</h2>
|
||||||
|
|
||||||
@ -56,11 +81,22 @@
|
|||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="main-menu__department">
|
<li class="main-menu__department">
|
||||||
<a class="main-menu__department-link" href="#" title="LOREM IPSUM">LOREM IPSUM</a>
|
<a class="main-menu__department-link" href="#" title="LOREM IPSUM">
|
||||||
|
LOREM IPSUM
|
||||||
|
<i class="sprite sprite-menu-mobile-arrow-icon"></i>
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="main-menu__department">
|
<li class="main-menu__department">
|
||||||
<a class="main-menu__department-link" href="#" title="LOREM IPSUM">LOREM IPSUM</a>
|
<a class="main-menu__department-link" href="#" title="LOREM IPSUM">
|
||||||
|
LOREM IPSUM
|
||||||
|
<i class="sprite sprite-menu-mobile-arrow-icon"></i>
|
||||||
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<a class="main-menu__account-link" href="/account">
|
||||||
|
<i class="sprite sprite-user-icon"></i>
|
||||||
|
ENTRAR / MEUS PEDIDOS
|
||||||
|
</a>
|
||||||
</nav>
|
</nav>
|
||||||
|
Loading…
Reference in New Issue
Block a user