DEV Community

Discussion on: CSS Animated Button with Offset Border

Collapse
 
link2twenty profile image
Andrew Bone

Great article, welcome to Dev ๐Ÿ˜Š

This looked like a fun challenge so I thought I'd make a quick mock up

Each one is wrapped in a decorative-space div but that's just to make the cool effect from your first gif ๐Ÿ˜

I didn't like the way the outline worked with the way I did it so I added my own outline using an iset box-shadow.

.primary-button:focus {
  outline: none;
  color: #396d83;
}

.primary-button:focus .primary-button__text  {
  box-shadow: inset 0 0 0 1px #354a76, 0 0 0 1px #fff;
  border-radius: 4px;
}
Enter fullscreen mode Exit fullscreen mode

Happy Blogging ๐ŸŽ‰

Collapse
 
abbeyperini profile image
Abbey Perini

Wow! So quick! I love it!!!