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
| /** | |
| * The first commented line is your dabblet’s title | |
| */ | |
| .circle { | |
| background: #fff; | |
| margin: 50px 25px; | |
| width: 24px; | |
| height: 24px; | |
| border: 12px solid #f55; |
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
| /** | |
| * Simple animated CSS3 switcher | |
| */ | |
| label { | |
| display: inline-block; | |
| line-height: 24px; | |
| } | |
| .switcher { | |
| display: inline-block; |
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
| /** | |
| * CSS arrow | |
| */ | |
| body { | |
| background: #4546da; | |
| } | |
| .arrow { | |
| background: #fff; |
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
| /** | |
| * Animated circle | |
| */ | |
| #circle { | |
| background: #f5a; | |
| border-radius: 50%; | |
| box-sizing: border-box; | |
| height: 200px; | |
| margin: 50px; |
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
| /** | |
| * Nice CSS 3D animation | |
| */ | |
| body { | |
| perspective: 1400; | |
| } | |
| #box { | |
| background: #d45; |
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
| /** | |
| * Responsive devices :) | |
| */ | |
| #responsive { | |
| background: #fff; | |
| border: 5px solid #333; | |
| border-bottom: 17px solid #333; | |
| border-radius: 5px; | |
| border-top: 10px solid #333; |
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
| /** | |
| * Responsive devices :) | |
| */ | |
| #responsive { | |
| animation-name: device; | |
| animation-duration: 5s; | |
| animation-iteration-count: infinite; | |
| animation-direction: alternate; | |
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
| /** | |
| * Image Roll | |
| */ | |
| #image-roll { | |
| height: 200px; | |
| width: 600px; | |
| perspective: 600; | |
| } |
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
| /** | |
| * Image Roll | |
| */ | |
| #image-roll { | |
| height: 200px; | |
| width: 600px; | |
| -webkit-perspective: 600; | |
| -moz-perspective: 600; | |
| perspective: 600; |
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
| /** | |
| * Image :hover animation I | |
| */ | |
| figure { | |
| height: 300px; | |
| overflow: hidden; | |
| perspective: 600; | |
| position: relative; | |
| width: 400px; |