header.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <nav id="header" class="w-full z-30 top-0 py-1">
  3. <div class="w-full container mx-auto flex flex-wrap items-center justify-between mt-0 px-6 py-3">
  4. <label for="menu-toggle" class="cursor-pointer md:hidden block">
  5. <svg class="fill-current text-gray-900" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20">
  6. <title>menu</title>
  7. <path d="M0 3h20v2H0V3zm0 6h20v2H0V9zm0 6h20v2H0v-2z"></path>
  8. </svg>
  9. </label>
  10. <input class="hidden" type="checkbox" id="menu-toggle" />
  11. <div class="hidden md:flex md:items-center md:w-auto w-full order-3 md:order-1" id="menu">
  12. <nav>
  13. <ul class="md:flex items-center justify-between text-base text-gray-700 pt-4 md:pt-0">
  14. <li><a class="inline-block no-underline hover:text-black hover:underline py-2 px-4" href="#about">Ho una cosetta di cui liberarmi</a></li>
  15. </ul>
  16. </nav>
  17. </div>
  18. <!-- <div class="order-1 md:order-2">
  19. </div> -->
  20. <div class="order-2 md:order-3 flex items-center" id="nav-content">
  21. <a class="flex items-center tracking-wide no-underline hover:no-underline font-bold text-gray-800 text-xl " href="#">
  22. COSETTE
  23. </a>
  24. <!-- <a class="pl-3 inline-block no-underline hover:text-black" href="#">
  25. <svg class="fill-current hover:text-black" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
  26. <path d="M21,7H7.462L5.91,3.586C5.748,3.229,5.392,3,5,3H2v2h2.356L9.09,15.414C9.252,15.771,9.608,16,10,16h8 c0.4,0,0.762-0.238,0.919-0.606l3-7c0.133-0.309,0.101-0.663-0.084-0.944C21.649,7.169,21.336,7,21,7z M17.341,14h-6.697L8.371,9 h11.112L17.341,14z" />
  27. <circle cx="10.5" cy="18.5" r="1.5" />
  28. <circle cx="17.5" cy="18.5" r="1.5" />
  29. </svg>
  30. </a> -->
  31. </div>
  32. </div>
  33. </nav>
  34. </template>