handsome-css3-lib icon indicating copy to clipboard operation
handsome-css3-lib copied to clipboard

[button]curvy-crab-71

Open ZiYi0414 opened this issue 1 year ago • 0 comments


title: curvy-crab-71 made_by: biswacpcode theme: dark

button {
  color: white;
  text-decoration: none;
  font-size: 25px;
  border: none;
  background: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

button::before {
  margin-left: auto;
}

button::after, button::before {
  content: '';
  width: 0%;
  height: 2px;
  background: #f44336;
  display: block;
  transition: 0.5s;
}

button:hover::after, button:hover::before {
  width: 100%;
}
<button>
  HOVER ME
</button>

ZiYi0414 avatar Dec 27 '23 08:12 ZiYi0414