Last active
December 17, 2015 08:38
-
-
Save justincarroll/5581193 to your computer and use it in GitHub Desktop.
This is basically a forked version of http://css3please.com/ stripped down and formatted the way I want it - meat and potatoes please.
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
.box_round { | |
-webkit-border-radius: 12px; | |
border-radius: 12px; | |
} | |
.box_shadow { | |
-webkit-box-shadow: 0px 0px 4px 0px #ffffff; | |
box-shadow: 0px 0px 4px 0px #ffffff; | |
} | |
.box_transition { | |
-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; | |
} | |
.box_scale { | |
-webkit-transform: scale(.95); | |
-ms-transform: scale(.95); | |
transform: scale(.95); | |
} | |
.background_size { | |
-webkit-background-size: 100% 100%; | |
background-size: 100% 100%; | |
} | |
.opacity { | |
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; | |
filter: alpha(opacity=50); | |
-moz-opacity: 0.5; | |
-khtml-opacity: 0.5; | |
opacity: 0.5; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment