Last active
August 2, 2017 12:48
-
-
Save itujono/3ff35615d171b6562f8b58394cbae396 to your computer and use it in GitHub Desktop.
Simple variables and mixins by Itujono Sempardak.
This file contains 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
$greyCont: #f3f3f3; | |
$mRight: 10px; | |
$flexBasis: 18%; | |
$boxShadow: 0 12px 15px 0 rgba(0, 0, 0, 0.09), 0 17px 50px 0 rgba(0, 0, 0, 0.1); | |
$autoCenter: 0 auto; | |
$transEase: all .3s ease; | |
@mixin flexCenter { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
flex-direction: column; | |
} | |
@mixin whContent { | |
height: 400px; | |
margin-bottom: 2em; | |
width: 450px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment