sass-site/source/assets/stylesheets/components/_icons.scss
Bermon Painter 6c54fd7c30 Writing content /install
- Restructured the content to focus on the 2 ways to get Sass installed: GUI & the command line
- Added icons (they need to be converted to SVG or webfonts so they look pretty)
- Added a version YML file so we can add the current Sass version, name and release notes in a single location to use throughout the site.
2013-10-11 16:17:32 -04:00

25 lines
446 B
SCSS

$os-icons: "/assets/images/icons/os-icons.png";
%os-icons {
background: url($os-icons) 0 0 no-repeat;
@include background-size(auto 15px);
display: inline-block;
height: 15px;
width: 15px;
}
.mac-icon {
@extend %os-icons;
background-position: -35px 0;
}
.windows-icon {
@extend %os-icons;
}
.linux-icon {
@extend %os-icons;
background-position: -65px 0;
}
.paid-icon {
@extend %os-icons;
background-position: -100px 0;
}