diff --git a/src/arquivos/sass/partials/_header.scss b/src/arquivos/sass/partials/_header.scss index 1f2e1cf..5ff3df4 100644 --- a/src/arquivos/sass/partials/_header.scss +++ b/src/arquivos/sass/partials/_header.scss @@ -1,4 +1,5 @@ .page-header { + position: relative; padding: 28px 0; background: $black-500; diff --git a/src/arquivos/sass/partials/_menu.scss b/src/arquivos/sass/partials/_menu.scss index 794344f..18a5f84 100644 --- a/src/arquivos/sass/partials/_menu.scss +++ b/src/arquivos/sass/partials/_menu.scss @@ -1,4 +1,6 @@ .menu { + align-self: stretch; + &__menu-button { padding: 0; border: 0; @@ -11,6 +13,122 @@ } .main-menu { - display: none; + height: 100%; + + &__departments { + display: flex; + height: 100%; + margin: 0; + } + + &__department { + display: flex; + align-items: center; + margin-right: 40px; + + @include mq(lg, min) { + &:hover { + .main-menu__department-link { + text-decoration: underline; + font-weight: 700; + color: $blue-500; + } + + .submenu { + top: 100%; + opacity: 1; + pointer-events: all; + } + } + } + + } + + &__department-link { + line-height: 15px; + font-size: 12px; + color: $white-500; + + @include mq(lg, min) { + &::after { + content: attr(title); + display: block; + height: 0; + overflow: hidden; + font-weight: bold; + visibility: hidden; + } + } + } + } + + .submenu { + position: absolute; + top: calc(100% + 32px); + left: 0; + z-index: map-get($z-index, $key: level-4); + width: 100%; + padding: 30px 0 43px; + background-color: rgba($white-500, 0.95); + box-shadow: 0 4px 4px rgba($black-500, 0.02); + opacity: 0; + pointer-events: none; + transition: all 0.2s ease-in-out; + + &::before { + content: ''; + position: absolute; + left: 0; + bottom: 100%; + display: block; + width: 100%; + height: 28px; + background: transparent; + } + + &__title { + margin: 0 0 8px; + line-height: 24px; + font-size: 20px; + } + + &__categories-wrapper { + display: flex; + margin-bottom: 8px; + } + + &__categories { + margin-right: 30px; + } + + &__category { + padding: 8px 0; + } + + &__category-link { + line-height: 15px; + font-size: 12px; + color: $black-500; + transition: color 0.2s linear; + + @include mq(lg, min) { + &:hover { + color: $blue-500; + } + } + } + + &__see-all { + display: flex; + align-items: center; + line-height: 15px; + font-size: 12px; + font-weight: bold; + color: $black-500; + + i { + margin-left: 9px; + } + } } } diff --git a/src/arquivos/sass/utils/_normalize.scss b/src/arquivos/sass/utils/_normalize.scss index 69d0d98..e61f344 100644 --- a/src/arquivos/sass/utils/_normalize.scss +++ b/src/arquivos/sass/utils/_normalize.scss @@ -23,7 +23,7 @@ html { */ body { - color: #142032; + color: $black-500; margin: 0; } diff --git a/src/arquivos/sprite/menu-arrow-icon.png b/src/arquivos/sprite/menu-arrow-icon.png new file mode 100644 index 0000000..029f828 Binary files /dev/null and b/src/arquivos/sprite/menu-arrow-icon.png differ diff --git a/src/controles-customizados/menuPrincipal.html b/src/controles-customizados/menuPrincipal.html new file mode 100644 index 0000000..d6afa7a --- /dev/null +++ b/src/controles-customizados/menuPrincipal.html @@ -0,0 +1,58 @@ + diff --git a/src/template-pagina/sub-templates/andrea-header.html b/src/template-pagina/sub-templates/andrea-header.html index ebba639..14b5038 100644 --- a/src/template-pagina/sub-templates/andrea-header.html +++ b/src/template-pagina/sub-templates/andrea-header.html @@ -6,7 +6,7 @@ - + diff --git a/test.js b/test.js new file mode 100644 index 0000000..a25ee1e --- /dev/null +++ b/test.js @@ -0,0 +1 @@ +APAGAR \ No newline at end of file