Минималистичная 3D кнопка на CSS



HTML:

<button>Отправить</button>




CSS:

button {

cursor: pointer;

border: 0;

color: #000;

background-color: #ff002f2f;

padding: 18px 32px;

border-radius: 6px;

font: 600 22px "Montserrat";

box-shadow: 0 5px 0 #ff0030;

transition: .3s;

}



button:active {

transform: translateY(4px);

box-shadow: 0 2px 0 #ff0030;

}




👉 @FrontendPortal | #CSS