Created
August 8, 2012 14:29
-
-
Save pelagisk/3295472 to your computer and use it in GitHub Desktop.
Exempel CSS 3
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
| /* Rundade hörn */ | |
| .rounded { | |
| border-radius: 5px; | |
| } | |
| /* Skuggade div:s och andra element, flera alternativ behövs eftersom opera, mozilla och webkit-browsers tolkar CSS något olika */ | |
| .box-shadowed { | |
| -moz-box-shadow: 3px 3px 5px 6px #ccc; | |
| -webkit-box-shadow: 3px 3px 5px 6px #ccc; | |
| box-shadow: 3px 3px 5px 6px #ccc; | |
| } | |
| /* Animationer som reagerar på användaren */ | |
| div.fade { | |
| background-color: #fff; | |
| transition: background-color 1s linear; | |
| -moz-transition: background-color 1s linear; | |
| -o-transition: background-color 1s linear; | |
| -webkit-transition: background-color 1s linear; | |
| } | |
| div.fade:hover { | |
| background-color: #f0c; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment