Skip to content

Instantly share code, notes, and snippets.

@neisdev
Created August 3, 2020 04:41
Show Gist options
  • Save neisdev/007b04435f8dfceb329cd41196c82931 to your computer and use it in GitHub Desktop.
Save neisdev/007b04435f8dfceb329cd41196c82931 to your computer and use it in GitHub Desktop.
Tailwind - Responsive Navbar
<header class="border-b md:flex md:items-center md:justify-between p-4 pb-0 shadow-lg md:pb-4">
<!-- Logo text or image -->
<div class="flex items-center justify-between mb-4 md:mb-0">
<h1 class="leading-none text-2xl text-grey-darkest">
<a class="no-underline text-grey-darkest hover:text-black" href="#">
Site Title
</a>
</h1>
<a class="text-black hover:text-orange md:hidden" href="#">
<i class="fa fa-2x fa-bars"></i>
</a>
</div>
<!-- END Logo text or image -->
<!-- Search field -->
<form class="mb-4 w-full md:mb-0 md:w-1/4">
<label class="hidden" for="search-form">Search</label>
<input class="bg-grey-lightest border-2 focus:border-orange p-2 rounded-lg shadow-inner w-full" placeholder="Search" type="text">
<button class="hidden">Submit</button>
</form>
<!-- END Search field -->
<!-- Global navigation -->
<nav>
<ul class="list-reset md:flex md:items-center">
<li class="md:ml-4">
<a class="block no-underline hover:underline py-2 text-grey-darkest hover:text-black md:border-none md:p-0" href="#">
Products
</a>
</li>
<li class="md:ml-4">
<a class="border-t block no-underline hover:underline py-2 text-grey-darkest hover:text-black md:border-none md:p-0" href="#">
About
</a>
</li>
<li class="md:ml-4">
<a class="border-t block no-underline hover:underline py-2 text-grey-darkest hover:text-black md:border-none md:p-0" href="#">
Contact
</a>
</li>
</ul>
</nav>
<!-- END Global navigation -->
</header>
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/0.6.5/tailwind.min.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment