HEX
Server: Apache
System: Linux www3.pit.tblive.com 5.14.0-687.38.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 12 17:19:12 EDT 2026 x86_64
User: awaldron (1020)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
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;
  }
}