Skip to content

Instantly share code, notes, and snippets.

@stphn
Last active December 7, 2022 21:04
Show Gist options
  • Save stphn/975155d3dc19322092d375d99695f8b4 to your computer and use it in GitHub Desktop.
Save stphn/975155d3dc19322092d375d99695f8b4 to your computer and use it in GitHub Desktop.
scss mixins
// aspect ratio
@mixin ratio($width:16, $height:9) {
width: 100%;
overflow: hidden;
padding-top: ($height / $width) * 100%;
position: relative;
> * {
position: absolute;
width: 100%;
height: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-size: cover;
background-position: center;
}
}
// zoom on background-image
@mixin zoom($value: 1.05) {
&:hover > * {
transform: scale($value);
}
> * {
transition: transform $duration*2 $timing;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment