mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 18:07:35 +01:00
6c54fd7c30
- 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.
25 lines
446 B
SCSS
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;
|
|
}
|