Sha256: b86ab1feb481849f6c9745dd3a19697288fa0dd30b8b1ded2c3bb178fbb22e89

Contents?: true

Size: 560 Bytes

Versions: 4

Compression:

Stored size: 560 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;
  display: inline-block;
  font-size: 1em;
  margin: 0 0.25em 0 0.25em;
  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

4 entries across 4 versions & 1 rubygems

Version Path
trusty-cms-7.0.9.1 app/assets/stylesheets/admin/modules/_buttons.scss
trusty-cms-7.0.11 app/assets/stylesheets/admin/modules/_buttons.scss
trusty-cms-7.0.10 app/assets/stylesheets/admin/modules/_buttons.scss
trusty-cms-7.0.9 app/assets/stylesheets/admin/modules/_buttons.scss