Sha256: 6074f61fd922f439c0b0408a069c51560e324e6726f66222e2934ce7ff5bca6a
Contents?: true
Size: 506 Bytes
Versions: 80
Compression:
Stored size: 506 Bytes
Contents
@mixin button { background-color: $dark-blue; color: $white; padding: 0.5em 2em; transition: all .3s ease-in-out; &:hover { background-color: darken($dark-blue, 15%); cursor: pointer; transition: all .3s ease-in-out; } } .button { @include button; font-size: 1em; text-decoration: none; } .cancel-button { @include button; background-color: $light-red; color: $dark-red; text-decoration: none; &:hover { background-color: $dark-red; color: $white; } }
Version data entries
80 entries across 80 versions & 1 rubygems