Menu de productos

This commit is contained in:
2020-05-31 12:46:59 -04:00
parent 26bd5207f3
commit 84e6808883
3 changed files with 21 additions and 3 deletions

View File

@ -20,6 +20,10 @@ header .menu { margin-top: 0 !important; margin-bottom: 0 !important; }
header .menu .logo { font-size: 2rem; font-weight: 900; } header .menu .logo { font-size: 2rem; font-weight: 900; }
header .menu #productos_menu .menu { border: none; box-shadow: none; }
header .menu #productos_menu .menu .item:hover { background-color: #a7a9ab !important; }
a { color: inherit !important; } a { color: inherit !important; }
.menu { font-family: inherit !important; } .menu { font-family: inherit !important; }

View File

@ -42,6 +42,15 @@ header {
font-size: 2rem; font-size: 2rem;
font-weight: 900; font-weight: 900;
} }
#productos_menu .menu {
border: none;
box-shadow: none;
.item:hover {
background-color: $gris-medio !important;
}
}
} }
} }

View File

@ -9,9 +9,14 @@
<a class="item" href="{{$urls->base}}/nosotros"> <a class="item" href="{{$urls->base}}/nosotros">
NOSOTROS NOSOTROS
</a> </a>
<a class="item" href="{{$urls->base}}/productos"> <div class="ui simple dropdown item" id="productos_menu">
PRODUCTOS <a href="{{$urls->base}}/productos">PRODUCTOS</a>
</a> <div class="menu">
@foreach ($segmentos as $segmento)
<a class="item" href="{{$urls->base}}/productos#{{mb_strtolower($segmento->titulo)}}">{{$segmento->titulo}}</a>
@endforeach
</div>
</div>
<a class="item" href="{{$urls->base}}/faqs"> <a class="item" href="{{$urls->base}}/faqs">
FAQs FAQs
</a> </a>