Skip to content

Instantly share code, notes, and snippets.

@bradrice
Created March 11, 2015 13:12
Show Gist options
  • Save bradrice/ac8ab98a262fc4c349d7 to your computer and use it in GitHub Desktop.
Save bradrice/ac8ab98a262fc4c349d7 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
// TODO: simplify with @each
$tools: socket, wrench, bolt;
@each $tool in $tools {
.tool-#{$tool}{
background: url('#{$tool}.png') no-repeat;
}
}
/*
.tool-socket {
background: url('socket.png') no-repeat;
}
.tool-wrench {
background: url('wrench.png') no-repeat;
}
.tool-bolt {
background: url('bolt.png') no-repeat;
}
*/
.tool-socket {
background: url("socket.png") no-repeat;
}
.tool-wrench {
background: url("wrench.png") no-repeat;
}
.tool-bolt {
background: url("bolt.png") no-repeat;
}
/*
.tool-socket {
background: url('socket.png') no-repeat;
}
.tool-wrench {
background: url('wrench.png') no-repeat;
}
.tool-bolt {
background: url('bolt.png') no-repeat;
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment