Coder Social home page Coder Social logo

sass-toolshed's Introduction

SASS-Toolshed

Everyday mixins for SASS. Use @import 'toolshed' to use.

You may also want to use Compass (http://compass-style.org/).

How to work with sprites

// $name    (string)  name of icon
// $yOffset (integer) variant of said icon
// $mode    (integer)
@mixin base-icon-sprite($name, $yOffset : 0, $mode : 0) {
	$width-sprite: 1200px;
	$height-sprite: 1200px;

	$xOffset: 0;

	$iconWidth: 22px;
	$iconHeight: $iconWidth;

	@if ($name == "logo-big") {
		$xOffset: 0;
		$iconWidth: 105px;
		$iconHeight: 115px;
	} @else if ($name == "arrow-up-white") {
		$xOffset: 1;
	} @else if ($name == "arrow-up-green") {
		$xOffset: 2;
	} @else if ($name == "angle-down") {
		$xOffset: 3;
	} @else if ($name == "angle-up") {
		$xOffset: 4;
	} @else if ($name == "angle-left-big") {
		$xOffset: 5;
	} @else if ($name == "angle-right-big") {
		$xOffset: 6;
	} @else if ($name == "angle-down-big") {
		$xOffset: 7;
		$iconWidth: 34px;
		$iconHeight: $iconWidth;
	} @else if ($name == "map-marker") {
		$xOffset: 8;
		$iconWidth: 24px;
		$iconHeight: 34px;
	} @else if ($name == "logo") {
		$xOffset: 9;
		$iconWidth: 62px;
		$iconHeight: 26px;
	}

	@include toolshed-grid-sprite-complete (
		"../img/shi-basics.png",
		"../img/[email protected]",
		1200px,
		360px,
		120px,
		120px,
		$iconWidth,
		$iconHeight,
		$xOffset,
		$yOffset,
		$mode
	);
}

Installation

Via Bower: bower install fboes/sass-toolshed

Version

Version: 1.2.1 (2014-11-25)

Legal stuff

Author: Frank Boës

Copyright & license: See LICENSE.txt

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.