Ariflaw / andy

Open-Source Collection of Useful SASS Mixins Library

Home Page:http://gillesbertaux.com/andy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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
  • Center Block
  • Clearfix
  • Font Face
  • Font Size
  • Hardware Acceleration
  • Hover
  • Image Retina
  • Line-Height
  • Media Queries
  • Opacity Black
  • Opacity White
  • Radius
  • Scale
  • Shadows
  • Size
  • TranslateX
  • TranslateY
  • Transitions

About

Open-Source Collection of Useful SASS Mixins Library

http://gillesbertaux.com/andy

License:MIT License


Languages

Language:CSS 100.0%