atelierspierrot/famfamfam-silk-sprite

This package is abandoned and no longer maintained. No replacement package was suggested.

The UNOFFICIAL sprite of the Silk icons by FamFamFam (http://www.famfamfam.com/lab/icons/silk/)

Installs: 16 039

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 2

Open Issues: 0

Language:CSS

Type:library-assets

v1.0.0 2013-10-12 21:09 UTC

This package is not auto-updated.

Last update: 2024-02-26 12:50:51 UTC


README

The UNOFFICIAL sprites of the FamFamFam Silk web icons by FamFamFam.

!! - This work is unofficial and is not liable for FamFamFam.

Overview

This package proposes a CSS sprite constructed on the FamFamFam Silk web-icons set. The original set of icons is proposed under Creative Commons "Attribution" license, free of use as long as you attach image credits to "FamFamFam".

To learn more about "CSS sprites" conception, see the Sprite (computer graphics) wikipedia's page.

Usage

Installation

This package is a "standalone" CSS framework. To use it, you just need to get its sources from GitHub and include the src/ content of the package in your project assets.

If you are a Bower user, the package is registered so you can write in your bower.json:

"dependencies": {
    ...
    "atelierspierrot/famfamfam-silk-sprite": "dev-master"
}

If you are a Composer user, the package is referenced to Packagist so you can write in your composer.json:

"require": {
    ...
    "atelierspierrot/famfamfam-silk-sprite": "dev-master"
}

The package has a library-assets type to allow handling by the Assets Manager Composer's extension. If you plan to use the manager, you can use the assets-install branch of the package, which has the AssetsManager in its requirements (to be sure it will be loaded before the sprite and be able to move it in the project assets).

HTML usage

Once the package is included in your project, you can start to use the sprites framework.

To do so, you first need to include the CSS definitions:

<link rel="stylesheet" href="path/to/package/src/silk-icons-sprite.min.css" />

Then you can start writing some Silk icons spans using the framework explained below.

A demonstration page is available in the global package in demo/ ; it shows in particular the list of available icons and their names.

CSS Framework

The package defines some CSS sprite classes to render some icons easily and with least of work.

The CSS framework to use the sprites is based on two classes:

  • the first one that is common and global: web-icon,
  • the last one to choose the icon itself, which is the name of the icon.

For instance, to render a the "print" icon, you will write:

<span class="web-icon print"></span>

As the sprite is not defined with restrictive CSS rules, you may encounter rendering problems (such as margins or paddings defined globally in your document) that can be avoid adding a reset class to your icons:

<span class="web-icon reset print"></span>

Credits

As mentioned above, the original set of icons is made by FamFamFam (Mark James - UK) and proposed under Creative Commons Attribution license. You are free to use it in any work but you must always add a link to www.famfamfam.com in a prominent place (e.g. the page footer), including the CC-BY license and the reference to www.famfamfam.com on every page using the icons.

The sprite was generated with the help of website-performance.org and is CSS3 valid.

The minified version of the CSS file of the package was processed with the YUI Compressor.

The PNG sprite is optimized using Smush.it (TM).