Skip to content

Instantly share code, notes, and snippets.

@holyzfy
Created April 25, 2016 10:17
Show Gist options
  • Save holyzfy/51f21b9a01dc51f300e2b1e1936b559c to your computer and use it in GitHub Desktop.
Save holyzfy/51f21b9a01dc51f300e2b1e1936b559c to your computer and use it in GitHub Desktop.
demo scss
.list {
background-image: url(xxx.png);
}
.header {
margin-bottom: 20px;
-webkit-transform: rotateZ(135deg);
transform: rotateZ(135deg);
}
.list {
width: 100px;
background-color: #0C355F;
background-position: 0 0;
}
$blue: #0C355F;
%bg {
background-image: url(xxx.png);
}
.header {
margin-bottom: 20px;
transform: rotateZ(135deg);
}
.list {
width: 100px;
background-color: $blue;
@extend %bg;
background-position: 0 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment