This is an example of a simple footer with hover effects, designed using HTML, CSS, and Bootstrap framework 4. The font, CSS and Bootstrap styles are imported to the code with their URLs. 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 child elements of the footer, in an orderly manner. The background color of the form is set as #fff, whereas the footer logo is given the styles of font-size as 1.8em, font-weight as 600, color as #333, margin-bottom as 22px, and display as block. The footer is given the styles of background as linear-gradient(to right,#fff 0,#535df1 50%,#fff 100%), height as 5px, width as 100%, and position as absolute. The child elements of the footer have the styles of font color as #6d6e71, font-size as 15px, and line-height as 30px. In a hover event, the child elements take the styles of font color as #27aae1, with a transition value of all 1s. Source: https://www.tolmatol.com/free-snippets-footer-design/
This is an example of a navigation bar with hover effects, 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 menu items in an orderly manner. The body of the form is given the styles of display as table, width as 100%, height as 100vh, background as #222, font-family as 'Roboto Condensed', sans-serif, font-size as 26px, font-weight as 600, letter-spacing as 5px, and text-transform style as uppercase to automatically convert the text to uppercase. The menu items are given a display style as inline-block. The three menu items are given three different background colors as #FFC56C, #6EC5E9, and #FF5959. The menu items are also given a cursor style as pointer to get the hand cursor effect on a hover event. The container of the menu items, take the background color of #fff in a hover event, generating an underline effect on the menu items. Source: https://codepen.io/rauldronca/pen/qaEGrb
This is an example of a sidebar layout with hover effects and a color theme, designed using HTML, CSS, JavaScript and Bootstrap framework 4. The JavaScript functions have been used to implement the day and night themes in a click event. The icons and images are imported to the code with the URLs. The colors used in the form are predefined as variables. The body of the form is given the styles of font-family as 'Inter UI', system-ui, font-size as 1.6rem, and background as #F6FBFF. The sidebar has the styles of background as #2B3137, font color as #FFFFFF, width as 100%, max-width as 300px, border-radius as 1rem, transition as all 200ms ease, and box-shadow as 0px 5px 12px rgba(black, .1), 0px 3px 6px rgba(black, .06). The menu buttons are given the styles of padding as 1rem 1.5rem, background as linear-gradient(to top, #2B3137, #394047), font color as #FFFFFF, border-radius as .3rem, cursor as pointer to get the hand cursor effect, box-shadow as 0px 3px 6px rgba(black, .15), and text-shadow as 0px 1px 1px rgba(black, .2). The buttons take the styles of background as #4BC6E9, and font color as #FFFFFF, in the night mode. Source: https://codepen.io/ryanparag/pen/gZEbOq
This is an example of a navigation menu with animations, designed using HTML, CSS, JavaScript, 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 menu items in an orderly manner, whereas JavaScript functions are used to implement the expanding function of the menu. The fonts and background images are imported to the code with the URL. Media quarries are used to make the form responsive. The body of the form is given the styles of font-family as "Barlow", sans-serif, and background-color as #f1f3f7. The menu icon has the styles of width and height as30px, and cursor style as pointer to get the hand cursor effect in a hover event. The four child elements of the menu is given four different background colors as #2d3561, #c05c7e, #f3826f, and #ffb961. The menu items have the styles of font color as white, text-transform as uppercase to automatically convert the text to uppercase, font-weight as 800, font-size as 40px, opacity as 0.3, and a transform style as rotate(-90deg). Source: https://codepen.io/rafaelavlucas/pen/JjPGNdq
This is an example of a web layout with responsive buttons with hover effects, designed using HTML, CSS, and Bootstrap framework 4. The fonts are imported to the code with their URLs. The body of the form is given a background color of #1D1F20. There are four buttons in the form named as Settings, Random, Download, and Messages. The buttons are given the styles of background as linear-gradient(to right, #2a2d35 0%, #353742 100%), border-color as #404454 white black red, border-style as solid, border-width as 2px 0px 2px 0px, color as #00FFAD, font-size as 35px, height as 76px, line-height as 76px, text-align as center, text-shadow as 0px -2px 1px #23252B, 0px 2px 2px #23252B, 0px 0px 20px #049B6A, width as 80px, and cursor style as pointer to get the hand cursor effect in a hover event. The button names have the styles of cursor as pointer, font-family as hipster, font-size as 25px, height as 76px, line-height as 76px, and margin-top as -76px. In a hover event, the buttons take the styles of background as linear-gradient(to right, #393c47 0%, #4a4e5b 100%), color as #FFD5A0, font-size as 45px, and text-shadow as 0px 0px 20px #FF8E00, 0px 2px 0px #23252B, 0px -1px 0px #23252B. Source: https://codepen.io/Trinca/pen/rLqNXv
This is an example of a menu-bar with hover effects, designed using HTML, CSS, and Bootstrap framework 4. The font style is imported to the code with its URL. The colors and transition values used in the form are predefined as $page-background: #303f9f, $nav-background: white, $color: rgba(black, .87), and $transition: .75s. The body of the form is given the styles of font as 100% Roboto, background as $page-background, and margin as 50px. The navigation icon is given the styles of width as 300px, background as $nav-background, color as $color, clip-path as circle(24px at 32px 24px), and transition as clip-path $transition/2. The navigation icon list-items are given the styles of display as block, line-height as 50px, padding as 0 20px, and color as inherit. In a hover event, the navigation icon expands to display the menu-bar, which takes the background color of #ffe082 in a hover event, and #ffca28 in the active mode. Source: https://codepen.io/bennettfeely/pen/fHdFb