Kann jemand diesen Button in HTML CSS umwandeln?

Bananenmayo  15.04.2023, 02:35

Ich arbeite dran, gib mir 10 min.

Carusla 
Fragesteller
 15.04.2023, 02:37

Ohh vielen Dank Curby

2 Antworten

HTML:

<button class="btn-ft">Feeling this</button>

CSS:

.btn-ft {
  padding: 1.15em 3em;
  border: 0.25em solid #f5bf8c;
  background: linear-gradient(
    90deg, 
    #fdc591 0%, 
    #cd9969 100%
  );
  color: #363639;
  font-weight: 600;
  border-radius: 2em;
  box-shadow: 
    inset 0 0 2px rgba(0, 0, 0, 0.25), 
    inset 0 0 15px rgba(0, 0, 0, 0.08);
 transition: all 0.2s ease-in-out;
 transform: scale(1);
}

.btn-ft:active {
 transform: scale(0.95);
}
Woher ich das weiß:Berufserfahrung – UI/UX Designer, Full-Stack Developer