Sha256: 95b41800947fc99cfade91f9cf42c7575e099133af228273f0f2a73640f7de2b

Contents?: true

Size: 876 Bytes

Versions: 3

Compression:

Stored size: 876 Bytes

Contents

//animations

.icon-property{
    @include transition($slow-transition-time, $transition-bezier);
    position: relative;
    display: inline-block;
}


.btn-rotate{
    i{
        @extend .icon-property;
    }
    
    &:hover,
    &:focus{
        i{
            @include rotate-53();
        }
    }
}

.btn-magnify{
    i{
        @extend .icon-property;
    }
    
    &:hover,
    &:focus{
        i{
            @include transform-scale(1.22);    
        }
    }
}

.btn-move-left{
    i{
        @extend .icon-property;
        margin-right: 0;
    }
    
    &:hover,
    &:focus{
        i{
            @include transform-translate-x(-5px);    
        }
    }
}

.btn-move-right{
    i{
        @extend .icon-property;
        margin-right: 0;
    }
    
    &:hover,
    &:focus{
        i{
            @include transform-translate-x(5px);    
        }
    }
}

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
action_ui-0.0.1 vendor/assets/stylesheets/pk/ct-pk/_animated-buttons.scss
cre_pro-0.0.1 vendor/assets/stylesheets/pk/ct-pk/_animated-buttons.scss
cre_pro-rails-0.0.1 vendor/assets/stylesheets/pk/ct-pk/_animated-buttons.scss