Published on

Learn How To Create A Google Login Page With Tailwind CSS from the Pros

Google Login Page

What is Tailwind CSS?

Tailwind CSS is a utility-first CSS framework that focuses on creating personalized user interfaces quickly. It can gives you all the building blocks you are able to create personalized designs without having to fight to override irritating opinionated styles. Also, Tailwind CSS is a highly configurable, low-level CSS framework.

The description of Google Login Page ui component

Similar google login page

Why use Tailwind CSS to create a Google Login Page ui component?

  • It can make the building process of Google Login Page ui component faster and more easily.
  • Enables building complex responsive layouts and components freely.
  • Minimum lines of CSS code in Google Login Page component file.

The preview of Google Login Page ui component

Free download of the Google Login Page's source code

The source code of Google Login Page ui component

<!DOCTYPE html>
<html lang="en" class="border-l">
<head>
    <meta charset="UTF-8">
    <link href="https://unpkg.com/[email protected]^2/dist/tailwind.min.css" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
    <title>Login</title>
    <style>
        * {
            margin:0;
            padding:0;
            font-family: 'Open Sans', sans-serif;
        }
        .input {
            transition: border 0.2s ease-in-out;
            min-width: 280px
        }
        .input:focus+.label,
        .input:active+.label,
        .input.filled+.label {
            font-size: .75rem;
            transition: all 0.2s ease-out;
            top: -0.9rem;
            background-color: #fff;
            color: #1a73e8;
            padding: 0 5px 0 5px;
            margin: 0 5px 0 5px;
        }
        .label {
            transition: all 0.2s ease-out;
            top: 0.4rem;
            left: 0;
        }
    </style>
</head>
<body>
<div class="md:h-screen bg-white relative flex flex-col justify-center items-center">
    <div class="md:border md:border-gray-300 bg-white md:shadow-lg shadow-none rounded p-10" >
        <div class="flex flex-col items-center space-y-3">
            <svg viewBox="0 0 75 24" width="75" height="24" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" class="l5Lhkf"><g id="qaEJec"><path fill="#ea4335" d="M67.954 16.303c-1.33 0-2.278-.608-2.886-1.804l7.967-3.3-.27-.68c-.495-1.33-2.008-3.79-5.102-3.79-3.068 0-5.622 2.41-5.622 5.96 0 3.34 2.53 5.96 5.92 5.96 2.73 0 4.31-1.67 4.97-2.64l-2.03-1.35c-.673.98-1.6 1.64-2.93 1.64zm-.203-7.27c1.04 0 1.92.52 2.21 1.264l-5.32 2.21c-.06-2.3 1.79-3.474 3.12-3.474z"></path></g><g id="YGlOvc"><path fill="#34a853" d="M58.193.67h2.564v17.44h-2.564z"></path></g><g id="BWfIk"><path fill="#4285f4" d="M54.152 8.066h-.088c-.588-.697-1.716-1.33-3.136-1.33-2.98 0-5.71 2.614-5.71 5.98 0 3.338 2.73 5.933 5.71 5.933 1.42 0 2.548-.64 3.136-1.36h.088v.86c0 2.28-1.217 3.5-3.183 3.5-1.61 0-2.6-1.15-3-2.12l-2.28.94c.65 1.58 2.39 3.52 5.28 3.52 3.06 0 5.66-1.807 5.66-6.206V7.21h-2.48v.858zm-3.006 8.237c-1.804 0-3.318-1.513-3.318-3.588 0-2.1 1.514-3.635 3.318-3.635 1.784 0 3.183 1.534 3.183 3.635 0 2.075-1.4 3.588-3.19 3.588z"></path></g><g id="e6m3fd"><path fill="#fbbc05" d="M38.17 6.735c-3.28 0-5.953 2.506-5.953 5.96 0 3.432 2.673 5.96 5.954 5.96 3.29 0 5.96-2.528 5.96-5.96 0-3.46-2.67-5.96-5.95-5.96zm0 9.568c-1.798 0-3.348-1.487-3.348-3.61 0-2.14 1.55-3.608 3.35-3.608s3.348 1.467 3.348 3.61c0 2.116-1.55 3.608-3.35 3.608z"></path></g><g id="vbkDmc"><path fill="#ea4335" d="M25.17 6.71c-3.28 0-5.954 2.505-5.954 5.958 0 3.433 2.673 5.96 5.954 5.96 3.282 0 5.955-2.527 5.955-5.96 0-3.453-2.673-5.96-5.955-5.96zm0 9.567c-1.8 0-3.35-1.487-3.35-3.61 0-2.14 1.55-3.608 3.35-3.608s3.35 1.46 3.35 3.6c0 2.12-1.55 3.61-3.35 3.61z"></path></g><g id="idEJde"><path fill="#4285f4" d="M14.11 14.182c.722-.723 1.205-1.78 1.387-3.334H9.423V8.373h8.518c.09.452.16 1.07.16 1.664 0 1.903-.52 4.26-2.19 5.934-1.63 1.7-3.71 2.61-6.48 2.61-5.12 0-9.42-4.17-9.42-9.29C0 4.17 4.31 0 9.43 0c2.83 0 4.843 1.108 6.362 2.56L14 4.347c-1.087-1.02-2.56-1.81-4.577-1.81-3.74 0-6.662 3.01-6.662 6.75s2.93 6.75 6.67 6.75c2.43 0 3.81-.972 4.69-1.856z"></path></g></svg>
            <span class="text-2xl font-semi-bold leading-normal" >Sign in</span>
            <p class="leading-normal">Use your Google Account</p>
        </div>
        <form class="my-8">
            <div class="relative mb-2">
                <input id="email" class="w-full rounded px-3 border border-gray-300 pt-5 pb-2 focus:border-blue-700 focus:ring-1 focus:ring-blue-700 focus:outline-none input active:outline-none" type="text" autofocus>
                <label for="email" class="label absolute mt-2 ml-3 leading-tighter text-gray-600 text-base cursor-text">Email or phone</label>
            </div>
            <div class="space-y-9">
                <div>
                    <a class="text-sm font-bold text-blue-500" href="#">Forgot email?</a>
                </div>
                <div class="text-sm">
                    <p>Not your computer? Use Guest mode to sign in privately.</p>
                    <a class="font-bold text-blue-500" href="#">Learn more</a>
                </div>
                <div class="text-sm flex justify-between items-center">
                    <a class="font-bold text-blue-500 py-2 px-2 rounded -ml-2 hover:bg-blue-50 hover:text-blue-700" href="#">Create account</a>
                    <button class="py-2 px-6 rounded text-white btn bg-blue-500 hover:bg-blue-600">Next</button>
                </div>
            </div>
        </form>
    </div>
</div>
</body>
</html>

How to create a Google Login Page with Tailwind CSS?

Install tailwind css of verion 2.2.4

Use the script html tag to import the script of Tailwind CSS of the version 2.2.4

<script src="https://cdn.tailwindcss.com"></script>

All the unility class needed to create a Google Login Page component

  • border-l
  • md:h-screen
  • bg-white
  • relative
  • flex
  • flex-col
  • md:border-gray-300
  • p-10
  • text-2xl
  • my-8
  • mb-2
  • w-full
  • px-3
  • border-gray-300
  • pt-5
  • pb-2
  • focus:border-blue-700
  • absolute
  • mt-2
  • ml-3
  • text-gray-600
  • text-base
  • text-sm
  • text-blue-500
  • py-2
  • px-2
  • -ml-2
  • hover:bg-blue-50
  • hover:text-blue-700
  • px-6
  • text-white
  • bg-blue-500
  • hover:bg-blue-600

33 steps to create a Google Login Page component with Tailwind CSS

  1. Control the border color of an element to l using the border-l utilities.

  2. Use h-screen to make an element span the entire height of the viewport at only medium screen sizes.

  3. Control the background color of an element to white using the bg-white utilities.

  4. Use relative to position an element according to the normal flow of the document.

  5. Use flex to create a block-level flex container.

  6. Use flex to create a block-level flex container.

  7. Control the border color of an element to gray-300 using the md:border-gray-300 utilities at only medium screen sizes.

  8. Control the padding on all sides of an element to 2.5rem using the p-10 utilities.

  9. Control the text color of an element to 2xl using the text-2xl utilities.

  10. Control the vertical margin of an element to 2rem using the my-8 utilities.

  11. Control the margin on bottom side of an element to 0.5rem using the mb-2 utilities.

  12. Use w-full to set an element to a 100% based width.

  13. Control the horizontal padding of an element to 0.75rem using the px-3 utilities.

  14. Control the border color of an element to gray-300 using the border-gray-300 utilities.

  15. Control the padding on top side of an element to 1.25rem using the pt-5 utilities.

  16. Control the padding on bottom side of an element to 0.5rem using the pb-2 utilities.

  17. Control the border color of an element to blue-700 using the focus:border-blue-700 utilities on focus.

  18. Use absolute to position an element outside of the normal flow of the document, causing neighboring elements to act as if the element doesn’t exist.

  19. Control the margin on top side of an element to 0.5rem using the mt-2 utilities.

  20. Control the margin on left side of an element to 0.75rem using the ml-3 utilities.

  21. Control the text color of an element to gray-600 using the text-gray-600 utilities.

  22. Control the text color of an element to base using the text-base utilities.

  23. Control the text color of an element to sm using the text-sm utilities.

  24. Control the text color of an element to blue-500 using the text-blue-500 utilities.

  25. Control the vertical padding of an element to 0.5rem using the py-2 utilities.

  26. Control the horizontal padding of an element to 0.5rem using the px-2 utilities.

  27. Control the margin on left side of an element to -0.5rem using the -ml-2 utilities.

  28. Control the background color of an element to blue-50 using the hover:bg-blue-50 utilities on hover.

  29. Control the text color of an element to blue-700 on hover using the hover:text-blue-700 utilities.

  30. Control the horizontal padding of an element to 1.5rem using the px-6 utilities.

  31. Control the text color of an element to white using the text-white utilities.

  32. Control the background color of an element to blue-500 using the bg-blue-500 utilities.

  33. Control the background color of an element to blue-600 using the hover:bg-blue-600 utilities on hover.

Conclusion

The above is a step-by-step tutorial on how to use Tailwind CSS to create a Google Login Page components, learn and follow along to implement your own components.