79126031

Date: 2024-10-25 14:05:43
Score: 0.5
Natty:
Report link

I am not really sure if this is what you mean because the description is kind of vague, but I quickly made this:

enter image description here

button {
  background-color: #6A0DAD; 
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 20px;
  cursor: pointer;
  text-align: center;


  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5), 0 0 10px white inset; 
  
  background-clip: padding-box;

  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

button:hover {
  background-color: #7E0DEB;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6), 0 0 10px white inset;
}
Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Salt