|
|
🔵 NORMALE STAAT
Test de knop
|
|
🔵 HOVER STAAT
Test de knop
|
|
🔵 ACTIVE STAAT
Test de knop
|
|
.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);
}
|
|