Last active
December 28, 2015 07:36
-
-
Save andreisoriga/4461246 to your computer and use it in GitHub Desktop.
CSS3 styles
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
| /* shadow */ | |
| -moz-box-shadow:0 0 7px rgba(0, 0, 0, 0.4); | |
| -webkit-box-shadow:0 0 7px rgba(0, 0, 0, 0.4); | |
| box-shadow:0 0 7px rgba(0, 0, 0, 0.4); | |
| /* border radius */ | |
| -moz-border-radius:3px; -webkit-border-radius:3px; border-radius:3px; | |
| /* inset shadow */ | |
| -moz-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.4); | |
| -webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.4); | |
| box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.4); | |
| /* inline block */ | |
| display:inline-block; | |
| vertical-align:top; | |
| zoom: 1; | |
| *display: inline; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment