This is a template of an input search with detailed information form, designed using CSS, HTML, and Bootstrap framework 4. The images are imported to the code with their URLs. Media quarries have been used to increase the responsiveness of the form. The body of the form is given a background color of #DEDEE6. The left side container is given a background color of #4820A7, whereas the right side container is given #F9F9F9. The upper tabs are displayed using the styles of font-size as 10px, font-weight as bold, and font color as #C4C4C6. The cursor style for tabs is set as pointer to get the hand cursor effect on hover. The font color of the tabs gets changed to #5B5B5B, in a hover event. The user image takes a border effect of 2px solid #d8ff00, in a hover event. The input text field is give a style set of background as #F7F8FD, letter-spacing as 1px, font color as #C4C4C6, font-size as 10px, and font-weight as bold. Source: https://bbbootstrap.com/snippets/bootstrap-input-search-detailed-information-70715936
This is an example of a credit card checkout with formatted input, designed using HTML, CSS, JavaScript, and Bootstrap framework 4. The card image is imported to the code with its URL while the media quarries have been used to increase the responsiveness of the form. JavaScript methods have been used to validate the number format of the card number text field. The body of the form is given the styles of font color as #000, and background-color as #EF5350, whereas the payment card is given the styles of padding as 30px 25px 35px 50px, border-radius as 30px, box-shadow as 0px 4px 8px 0px #B71C1C,and margin-top and bottom as 50px. The input text fields are given a border-bottom style of 1px solid lightgrey, font color of #000, font-size of 16px, letter-spacing of 1px, and a font-weight of 500. In a focus event, they take a border-bottom style of 1px solid #EF5350. The 'Pay' button is given a border-radius of 50px, font-size of 18px, and a background color of #EF5350, and takes a box-shadow effect of 0 0 0 2px #EF5350, in hover and focus events. Source: https://bbbootstrap.com/snippets/credit-card-checkout-formatted-input-51353295
This is an example of an input boxes layout, designed using HTML, CSS, and Bootstrap framework 4. The values and colors are predefined as variables. The body of the form is given the styles of font-family as "Lato", sans-serif, and font-size as 16px. The section header is given the styles of text-transform as uppercase to automatically convert the text to uppercase, font-weight as bold, color as #9FAAB7, font-size as 16px/1.4, and margin-bottom as 1.4. The input fields are given the styles of border as 1px solid #C0CCDA, margin-bottom as 16px, and border-radius as 4px. The input fields take a border-color of #270D7C, in a checked event. The input text is given the styles of opacity as 1, font-size as 8px* 1.4, background-color as white, color as #9FAAB7, padding as 4px/2 4px, and margin as -58px 0 0 8px*1.4. Source: https://codepen.io/swapnet/pen/oJeKyL
This is an example of a web form with input types and pseudo-elements, designed using HTML, CSS, and Bootstrap framework 4. The concept of Lists has been used with UL and LI components. UL element has been used with the child elements of LI to display the icons and elements in an orderly manner. There are eight types of inputs and elements displayed on the form, which are text¸ radio, checkbox, range, color, button, text area, and Select. The wrapper class is given the styles of max-width as 600px, margin as 2rem auto 1rem. The header of the form is given a text-align style as center. The list items are displayed in a grid, and the number of columns for the grid is defined as 2. The grid-gap is set as 1rem, with the font-style for the list items is set as 16px/1.4 Arial, sans-serif. An outline style of 1px solid #DDD is set for the list item box, with a padding value as .5rem. Source: https://codepen.io/yoksel/pen/eYNmRNe
For an input field, this is one of the best styles one can have using the 2D vector math library of javascript. This style appears on the box while the user is typing in the input field. This can be achieved using HTML, script math library and CSS styles on your login forms, contact forms, websites, and even on your landing pages. In the HTML, a span element is added in the document. The input keys are added in the javascript for which the animation will be displayed. Next, you need to create a few math functions to create the spray along with the words which are typed in the input field. You can increase the burst of a spray of stimulated particles along the span on input field from left to right and top to bottom. You can see the math for particle stimulation along with the 2D vector class. Source: https://codepen.io/rikschennink/pen/VaqNgx