Skip to content

jerrysdesign/andy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Andy.scss: Open-Source Collection of Useful SASS Mixins Library.

Homepage: http://gillesbertaux.com/andy

The purpose of Andy is to gather useful mixins and avoid enless researches or heavy framework use. Feel free to fork it on Github and add your own mixins: https://github.com/gillesbertaux/andy

Installation

Download or use Bower:

$ bower install andy

How to use

You can either pick the mixins you find useful or include the entire file in your SASS project.

Put this mixin in your helper file:

@mixin hover($time) {
  -webkit-transition: all $time ease-in-out;
  -o-transition: all $time ease-in-out;
  -moz-transition: all $time ease-in-out;
  transition: all $time ease-in-out;
}

Then call it like:

@include hover(.3s);

Mixins availables:

  • Background Gradient
  • Background Size
  • Borders
  • Border Corners
  • Box Sizing
  • Clearfix
  • Font Face
  • Font Size
  • Hardware Acceleration
  • Hover
  • Media Queries
  • Opacity Black
  • Opacity White
  • Radius
  • Scale
  • Shadows
  • Size
  • TranslateX
  • TranslateY
  • Transitions

About

Open-Source Collection of Useful SASS Mixins Library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 100.0%