Sha256: 356c728b37c92adaa39ede9686d9b27488dcf4944348e05c79a469eadc8fea1e

Contents?: true

Size: 547 Bytes

Versions: 13

Compression:

Stored size: 547 Bytes

Contents

@mixin easeInOut
  -moz-transition: all 0.3s ease-in-out
  -o-transition: all  0.3s ease-in-out
  -webkit-transition: all 0.3s ease-in-out
  transition: all 0.3s ease-in-out

@mixin animate($n)
  transition: all $n ease-out

@mixin scale
  transform: scale(1.1)

.ae-fade-in
  &:hover
    animation: fadeIn 1s linear

.ae-fade-out
  &:hover
    animation: fadeOut 1s linear

.ae-ease-in-out
  &:hover
    @include easeInOut

@keyframes fadeIn
  0%
    opacity: 0
  100%
    opacity: 1

@keyframes fadeOut
  0%
    opacity: 1
  100%
    opacity: 0

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
express_ui-0.1.7 app/assets/stylesheets/express_ui/atoms/_animations.sass
express_ui-0.1.6 app/assets/stylesheets/express_ui/atoms/_animations.sass
express_ui-0.1.5 app/assets/stylesheets/express_ui/atoms/_animations.sass
express_ui-0.1.4 app/assets/stylesheets/express_ui/atoms/_animations.sass
express_ui-0.1.3 app/assets/stylesheets/express_ui/atoms/_animations.sass
express_ui-0.1.2 app/assets/stylesheets/express_ui/atoms/_animations.sass
express_ui-0.1.1 app/assets/stylesheets/express_ui/atoms/_animations.sass
express_ui-0.1.0 app/assets/stylesheets/express_ui/atoms/_animations.sass
express_ui-0.1.0.rc7 app/assets/stylesheets/express_ui/atoms/_animations.sass
express_ui-0.1.0.rc5 app/assets/stylesheets/express_ui/atoms/_animations.sass
express_ui-0.1.0.rc4 app/assets/stylesheets/express_ui/atoms/_animations.sass
express_ui-0.1.0.rc3 app/assets/stylesheets/express_ui/atoms/_animations.sass
express_ui-0.1.0.rc1 app/assets/stylesheets/express_ui/atoms/_animations.sass