Saturday, October 22, 2022
HomeWordPress Development10 UI and UX Rules whereas styling with CSS

10 UI and UX Rules whereas styling with CSS


a) Use acceptable icon set for all buttons. For those who would not have correct icons, you may obtain it or use its hyperlink in stylesheet from Google Fonts. You may as well use icons in emoji format. If you wish to know the hex code of emojis you may confer with W3 Faculties Emoji Reference. This may enhance the accessibility of the web site.

b) Put a assist button. It ought to direct the consumer to any documentation of the web site, video tutorial of the product or the Buyer help of the web site.

c) Be in step with colours. As a substitute of utilizing a number of colours determine a coloration theme in your web site. Guarantee that the colours make a pointy distinction.
Right here’s a coloration theme as an example-

:root {
     --primary-color: #F0F0F0;
     --secondary-color: #FFFFFF;
     --text-color: #121212;
     --success-color: #2CE840;
     --danger-color: #FF5252;
}
.dark-mode {
     --primary-color: #121212;
     --secondary-color: #4B4B4B;
     --text-color: #FFFFFF;
     --success-color: #2CE840;
     --danger-color: #FF5252;
}
Enter fullscreen mode

Exit fullscreen mode

Right here, var( --primary-color) would be the background-color, var(--secondary-color) would be the background-color of components and var(--text-color) would be the textual content coloration.
If you’re unsure which colours to make use of you may take assist from Shade Hunt. Use :root {} and outline in it the colours and use var(--colorname) to make use of the colours. This may also assist you to whereas making the darkish mode of the web site.

d) Be in step with fonts. Use a most of 4 fonts and a minimal of 4 fonts in your tasks. Give a unique font in your heading and physique textual content.

e) Comply with coloration requirements. A warning message ought to have pink background. A word message ought to have a yellow background. A success message ought to have a inexperienced background. A ideas message needs to be in blue background.

f) Don’t make it messy. Use correct word-spacing, letter-spacing, paddings and margins. There needs to be sufficient clean house within the web site.

g) Attempt to make the buttons rectangular. So when the phrase is small use extra horizontal padding than vertical padding.

h) Use :hover and :energetic pseudo courses on buttons The background-color distinction between the traditional state and the :hover state ought to have a pointy distinction whereas the :hover state and :energetic state ought to have much less distinction.

i) Use user-select: none; on buttons in order that when the consumer double clicks it does not choose the content material inside the button.

j) Use :focus pseudo class for inputs. The :focus state ought to have a border.


Take a look at the entire sequence!
Share it💚 with somebody who could profit from this
❤️ Joyful Coding!
Comply with for extra!

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -
Google search engine

Most Popular

Recent Comments