Answers for "button outer glow css"

CSS
1

glow button css

body {
  background: #151b29;
  display: flex;
  justify-content: center;
}

button {
  background: none;
  color: #ffa260;
  border: 2px solid;
  padding: 10px;
  align-self: center;
  transition: all 0.2s;
}

button:hover{
  border-color: #f1ff5c;
  box-shadow: 1px 5px 3px 1px #f1ff5c;
  color: #fff;
  transform: translate(-3px, -7px);
}
Posted by: Guest on August-13-2021

Browse Popular Code Answers by Language