Skip to content

Instantly share code, notes, and snippets.

@puginabox
Created December 28, 2014 05:28
Show Gist options
  • Save puginabox/4cfb2381e5aeed6b7b3b to your computer and use it in GitHub Desktop.
Save puginabox/4cfb2381e5aeed6b7b3b to your computer and use it in GitHub Desktop.
mixins
// _mixins
// ========
@mixin backgroundImage($image) {
background: url($image) no-repeat 50% 20% ;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
-webkit-transition: all 0.3s ease-out;
-moz-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
@media (min-width: 801px) {
height: 350px;
}
@media (max-width: 800px) {
height: 150px;
}
@media (max-width: 300px) {
height: 100px;
}
}
@mixin clearfix {
&:after {
content: "";
display: table;
clear: both;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment