phaxadstudios / interactive-card-details-form-main

frontendmentor challenge

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Frontend Mentor - Interactive card details form solution

This is a solution to the Interactive card details form challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Note: Delete this note and update the table of contents based on what sections you keep.

Overview

The challenge

Users should be able to:

  • Fill in the form and see the card details update in real-time
  • Receive error messages when the form is submitted if:
    • Any input field is empty
    • The card number, expiry date, or CVC fields are in the wrong format
  • View the optimal layout depending on their device's screen size
  • See hover, active, and focus states for interactive elements on the page

Screenshot

Links

My process

Built with

  • Plain JavaScript
  • Tailwind CSS
  • Flexbox

What I learned

  • Set up project with parcel and tailwind source
  • Don't override the font size, this leads to a lot of custom classes in tailwind like mb-[2.6rem]
    html {
        font-size: 62.5%; /* 10px */
    }
    
  • Make a border with color gradient
    .form-input:active,
    .form-input:focus,
    .form-input:hover,
    .form-input:not(:placeholder-shown) {
        background:
                linear-gradient(white, white) padding-box,
                linear-gradient(to bottom, #6348FE, #610595) border-box;
        opacity: 1;
        border: 1px solid transparent;
    }

Continued development

  • Tailwind CSS
  • Develop mobile first, since Tailwind's approach is more mobile first

Author

About

frontendmentor challenge


Languages

Language:HTML 46.5%Language:JavaScript 32.9%Language:CSS 20.7%