1
0
Fork 0
mirror of https://github.com/Oreolek/elements.git synced 2024-04-26 22:19:18 +03:00
Go to file
Alexander Yakovlev 5309384975 Merge pull request #1 from frozeman/master
add shadow > both() and unified the id names
2012-07-06 01:02:08 -07:00
CREDITS Updated credits, added KHTML prefix to text-shadow 2012-05-26 08:27:37 +07:00
elements.less add box shadow none: #shadow > .none(); 2012-07-05 23:06:02 +02:00
README.md Update README.md 2012-05-26 13:18:41 +07:00

LESS Elements

LESS Elements is a set of useful mixins for the LESS CSS pre-processor to help you cut down the size of your stylesheets.

LESS is a fantastic tool that extends CSS and makes writing and maintaining large stylesheets easy. Even so, I found myself re-writing the same mixins again and again for different projects. LESS Elements is a collection of these common re-usable mixins.

For example, lets look at a bit of CSS3 code that adds a couple of rounded corners (only the top left and top right edges):

#some_div {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

Browser specific code makes using CSS3 a chore. 6 lines of code just to add rounded corners. LESS mixins to the rescue. With LESS Elements the above can be compressed to just a 1 line:

#some_div {
  #borders > .radius(5px, 0, 0, 5px);
}

Looks just line shorthand CSS, with the values representing top right, bottom right, bottom left and top left corner radii in a clockwise order. To use LESS Elements, just download it (Github repo), put the “elements.less” file in your stylesheets folder and include it with 1 line of code at the top of your LESS file:

@import "elements";

Currently LESS Elements includes following namespaces:

Gradients

Borders

Shadows

Transformations

Transitions

Layout