Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 1.66 KB

README.rst

File metadata and controls

39 lines (28 loc) · 1.66 KB

Glue

Glue is a simple command line tool to generate CSS sprites:

$ glue source output

Features

Example

Using the gorgeous famfamfam icons (4.2Mb) you will get the following icons.png (401Kb).

image

And also an icons.css with all the necessary CSS classes for this sprite:

.sprite-icons-zoom_out{ background:url('icons.png'); top:0; left:0; no-repeat;}
.sprite-icons-zoom_in{ background:url('icons.png'); top:0; left:-16; no-repeat;}
.sprite-icons-zoom{ background:url('icons.png'); top:-16; left:0; no-repeat;}
.sprite-icons-xhtml_valid{ background:url('icons.png'); top:-16; left:-16; no-repeat;}
...

Do you want to know more? Visit the quickstart guide: http://glue.readthedocs.org/en/latest/quickstart.html