KvnMrs / Portfolio_ReactJs_V2

0 stars 0 forks source link

Review buttons #46

Open KvnMrs opened 2 years ago

KvnMrs commented 2 years ago

The style for some button ( callToAction for exemple) can be review

an exemple of code that can be use:

.animated-border-button {
  background-color: #263059;
  border: none;
  color: #ffffff;
  outline: none;
  padding: 12px 40px 10px;
  position: relative;
  width: auto;
}

.animated-border-button:before,
.animated-border-button:after {
  border: 0 solid transparent;
  transition: all 0.3s;
  content: '';
  height: 0;
  position: absolute;
  width: 24px;
}

.animated-border-button:before {
  border-top: 2px solid #263059;
  right: 0;
  top: -4px;
}

.animated-border-button:after {
  border-bottom: 2px solid #263059;
  bottom: -4px;
  left: 0;
}

.animated-border-button:hover:before,
.animated-border-button:hover:after {
  width: 100%;
}

.animated-border-button:hover:before,
.animated-border-button:hover:after {
  width: 100%;
}