Sha256: 31150c502c8635d95be5d11879f7a7ef1a8dcd8283371f8858a55d896e8eae73
Contents?: true
Size: 1.03 KB
Versions: 31
Compression:
Stored size: 1.03 KB
Contents
// ============================================================================= // BUTTONS // ============================================================================= .btn { display: inline-block; font-family: inherit; background: #fff; color: $blue; padding: .75em 1em; font-size: 14px; border-radius: 4px; cursor: pointer; border: none; box-shadow: 0 0 0 1px rgba(#000, 0.15); } .btn--primary { background-color: $blue; color: #fff; box-shadow: none; &.btn--disabled { box-shadow: 0 0 0 1px rgba(#000, 0.15); } &.btn--warning { background-color: $yellow; } } .btn--disabled { color: $grey; background-color: #fafafa; cursor: default; } .btn--delete { color: #fff; border: none; background-color: $bright-red; &.btn-disabled { color: $grey; background-color: $light-red; } } .btn--alert { color: #fff; background-color: $orange; &.btn-disabled { color: $grey; background-color: $light-orange; } } .btn--large { font-size: 1rem; padding: 1em 1.25em; }
Version data entries
31 entries across 31 versions & 1 rubygems