File: /home/awaldron/_domains/knowtifi.alanwaldron.com/php/scss/custom/_buttons.scss
.bim-btn {
&.btn-white {
padding: 0.75em 0;
text-align: center;
color: $orange;
background-color: $white;
opacity: 1;
@include transition(all 0.3s ease);
@include doubleRound(1em);
&:hover {
opacity: 0.75;
text-decoration: none;
}
}
&.btn-orange {
display: inline-block;
padding: 0.75em 0;
text-align: center;
color: $white;
background-color: $orange;
opacity: 1;
@include transition(all 0.3s ease);
@include doubleRound(1em);
&:hover {
text-decoration: none;
background-color: $aqua;
}
}
&.btn-outlined {
margin: 0 auto;
display: inline-block;
width: min-content;
padding: 2px 12px;
text-align: center;
color: $blue;
border: solid 1px $orange;
background-color: $white;
@include transition(all 0.3s ease);
@include doubleRound(0.6em);
&:hover {
background-color: $orange;
color: $white;
text-decoration: none;
}
}
}
.custom-submit {
background-color: $orange;
color: $white;
padding: 10px 20px;
border: 0;
text-decoration: none;
@include doubleRound(16px);
@include transition(all 0.25s ease);
&:disabled {
background-color: $gray-500;
}
&:hover {
background-color: $aqua;
color: $white;
text-decoration: none;
}
}