Skip to content

Instantly share code, notes, and snippets.

@rmahmood19
Last active February 4, 2021 21:12
Show Gist options
  • Save rmahmood19/4dadf46df6c4c968ed611c6bb9877670 to your computer and use it in GitHub Desktop.
Save rmahmood19/4dadf46df6c4c968ed611c6bb9877670 to your computer and use it in GitHub Desktop.
Tailwind Collection
**Gradient centered page login form**
<div class="flex justify-center items-center h-screen bg-gradient-to-br from-green-400 to-blue-500 ..">
<div>
<form class=" text-center text-xl font-thin shadow-2xl rounded-lg border border-white bg-transparent p-4 sm:w-96 ">
<label for="name" class="text-white text-center ">Email</label>
<input type="text" class="w-full block bg-transparent border-2 rounded-3xl focus:outline-none px-4 py-2 mb-3 hover:outline-none focus:border-indigo-800 ">
<label for="name" class="text-white mt-6">Password</label>
<input type="text" class=" w-full block bg-transparent border-2 rounded-3xl focus:outline-none focus:border-indigo-800 px-4 py-2">
</form>
</div>
</div>
[Link](https://play.tailwindcss.com/BDVxkYF3NC)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment