🎨 Button Editor 🔄 Reset
🔘 Live Preview - Test Hover en Klik!
Test de knop
⚙️ Button Instellingen
🎯 NORMAAL
Achtergrondkleur:
Tekstkleur:
Rand dikte (px):
Rand kleur:
Border radius (px):
Lettergrootte (px):
Lettergewicht:

📝 BASIS
Button tekst:
Button link:
Breedte (px):
Hoogte (px):
Padding (px):
Top
Right
Bottom
Left

📦 BOX SHADOW
X offset (px):
Y offset (px):
Blur (px):
Spread (px):
Kleur:
Inset shadow:
✨ HOVER
Achtergrond:
Tekstkleur:
Rand dikte (px):
Rand kleur:
Scale factor:
1.05 = 5% groter
Hover Delay (s):
Bijv: 0.3 = 0.3 seconde

🔵 NORMALE STAAT

Test de knop
🔵 HOVER STAAT

Test de knop
🔵 ACTIVE STAAT

Test de knop
👇 ACTIVE
Achtergrond:
Tekstkleur:
Rand dikte (px):
Rand kleur:
Scale factor:
0.98 = 2% kleiner
Active Delay (s):
Bijv: 0.1 = 0.1 seconde

🎨 CSS STIJLEN
.custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: px;
    height: px;
    background-color: #FFFFFF;
    color: #231f11;
    text-decoration: none;
    text-align: center;
    border: 1px solid #A9A57F;
    border-radius: 0px;
    font-size: 14px;
    font-weight: normal;
    padding: 7px 15px 7px 15px;
    cursor: pointer;
    transition: all 1s ease, transform 1s ease;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
}

.custom-button:hover {
    background-color: #7c7d69;
    color: #231f11;
    font-weight: normal;
    border: 1px solid #515241;
    transform: scale(1);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
}

.custom-button:active {
    background-color: #515241;
    color: #FFFFFF;
    font-weight: normal;
    border: 1px solid #7c7d69;
    transform: scale(1);
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.2);
}
📄 HTML CODE
<!-- Voeg CSS toe in <style> tag --> <a href="#" class="custom-button">Test de knop</a>