Last active
December 7, 2022 21:04
-
-
Save stphn/975155d3dc19322092d375d99695f8b4 to your computer and use it in GitHub Desktop.
scss mixins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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