DEV Community

Shubham Jadhav
Shubham Jadhav

Posted on

Neumorphic Social Media Buttons in CSS

Neumorphic Social Media Button using pure CSS πŸ‘‡

Latest comments (5)

Collapse
 
eleanorgilbert profile image
Eleanor Gilbert

Thanks, I use these Social Media Buttons

Collapse
 
jonrandy profile image
Jon Randy πŸŽ–οΈ • Edited

There is an issue - by removing the outline there is no way of seeing if the button is active if you have got to it using the keyboard (tabbed to it for example). Could perhaps be solved by making the button appear in the 'down' state with :focus?

Collapse
 
kiddcreator profile image
kidd-creator

This might help though

button:active{
    transform: scale(0.89)
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
jonrandy profile image
Jon Randy πŸŽ–οΈ

Yeah - anything visual. Needs to be on :focus not :active though

Thread Thread
 
kiddcreator profile image
kidd-creator

okay thanks