Button Style
16px
8px
8px
Preview
Generated CSS & HTML
.custom-button {
padding: 8px 16px;
border-radius: 8px;
background: #0071e3;
color: #ffffff;
border: none;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 500;
box-shadow: none;
}
.custom-button:hover {
transform: scale(1.05);
}