Skip to content
Snippets Groups Projects
_buttons.scss 896 B
Newer Older
  • Learn to ignore specific revisions
  • Yoan VALLET's avatar
    Yoan VALLET committed
    @import '../base/color';
    @import '../base/mixins';
    
    button {
    
      span {
        font-size: 1rem;
        font-weight: 700;
    
    Yoan VALLET's avatar
    Yoan VALLET committed
      }
    
    
      &.btnPrimary {
        @include button($dark-light-2, transparent, $multi-color-radial-gradient) {
          background-color: darken($gold-shadow, 12%);
    
    Yoan VALLET's avatar
    Yoan VALLET committed
        }
      }
    
    
      &.btnSecondary {
        @include button($grey-bright, $grey-bright, transparent);
    
    Yoan VALLET's avatar
    Yoan VALLET committed
      }
    
    
      &.btnText {
        text-decoration: underline;
        span {
          text-transform: none;
          font-weight: 400;
    
    Yoan VALLET's avatar
    Yoan VALLET committed
        }
      }
    
    
      &.btnPrimaryNegative {
        @include button($dark-light-2, transparent, $blue-gradient);
        &:hover {
          opacity: 0.7;
    
    Yoan VALLET's avatar
    Yoan VALLET committed
        }
      }
    
    
      &.btnIncrement {
        @include button($white, transparent, $grey-linear-gradient-background);
        min-width: 40px;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.55);
    
    Yoan VALLET's avatar
    Yoan VALLET committed
      }
    }