| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- /* Buttons */
- .btn {
- font-size: $btn-font-size;
- line-height: 1;
- font-family: $type1-bold;
- i {
- font-size: 1rem;
- }
- &.btn-rounded {
- @include border-radius(50px);
- }
- &.btn-fw {
- min-width: $button-fixed-width;
- }
- &.btn-sm {
- font-size: $btn-font-size-sm;
- }
- &.btn-lg {
- font-size: $btn-font-size-lg;
- }
- &.btn-xs {
- padding: $btn-padding-y-xs $btn-padding-x-xs;
- font-size: $btn-font-size-xs;
- }
- /* Buttons with only icons */
- &.btn-icon {
- width: 42px;
- height: 42px;
- padding: 0;
- }
- /* Buttons with icon and text */
- &.btn-icon-text {
- .btn-icon-prepend {
- margin-right: .5rem;
- }
- .btn-icon-append {
- margin-left: .5rem;
- }
- }
- &.btn-social-icon {
- width: 50px;
- height: 50px;
- padding: 0;
- }
- }
- .btn-group {
- .btn {
- + .btn {
- border-left: 0;
- }
- }
- }
- .btn-toolbar {
- .btn-group {
- +.btn-group {
- @extend .ml-2;
- }
- }
- }
- /*social buttons*/
- @each $color, $value in $social-colors {
- .btn-#{$color} {
- @include social-button(social-color($color));
- }
- .btn-outline-#{$color} {
- @include social-outline-button(social-color($color));
- }
- }
- /* inverse buttons */
- @each $color, $value in $theme-colors {
- .btn-inverse-#{$color} {
- @include button-inverse-variant($value);
- }
- .btn-#{$color}:not(.btn-light) {
- color: $white;
- &:hover,
- &:focus,
- &:active {
- color: $white;
- }
- &:focus,
- &:active {
- background: $value;
- border-color: $value;
- }
- }
- .btn-outline-#{$color} {
- &:hover,
- &:focus,
- &:active {
- background: theme-gradient-color($color);
- color: $white;
- }
- }
- }
- /* gradient buttons */
- @each $color, $value in $theme-gradient-colors {
- .btn-gradient-#{$color} {
- @include button-gradient-variant($value);
- }
- }
|