123456789101112131415161718192021222324252627282930313233343536 |
- .btn {
- padding: .75rem 1.4rem!important;
- font-size: .95rem;
- height: 36px;
- line-height: .7;
- border-radius: 0.4rem;
- }
- .btn-sm, .btn-group-sm > .btn {
- padding: 0.5rem 1rem;
- font-size: 0.7rem;
- line-height: 1.4;
- }
- .btn-custom {
- background: $custom;
- border-color: $custom;
- color: $white;
- }
- .btn-custom:hover {
- color: $white;
- box-shadow: 0 8px 25px -8px $custom;
- }
- .btn-outline-custom {
- background: $white;
- border: 1px solid $custom;
- color: $custom;
- }
- .btn-outline-custom:hover {
- background: rgba($custom, .15);
- color: $custom;
- }
|