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
| /** | |
| * var scriptsList=[{ | |
| * type:'prop', | |
| * propName:'chrome' | |
| * },{ | |
| * type:'prop', | |
| * propName:'windows' | |
| * },{ | |
| * type:'prop', |
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
| /** | |
| * Bouncing animation | |
| */ | |
| @keyframes bounce { | |
| 60%, 80%, to { | |
| transform: translateY(400px); | |
| animation-timing-function: ease; | |
| } | |
| 70% { transform: translateY(300px); } |
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
| /** | |
| * Interactive image comparison - with CSS resize | |
| */ | |
| .image-slider { | |
| position:relative; | |
| display: inline-block; | |
| width:382.5px; | |
| height:340px; | |
| overflow:hidden; |
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
| /** | |
| * Letterpress | |
| */ | |
| body { | |
| font: 250%/1.6 Baskerville, Palatino, serif; | |
| } | |
| p { | |
| padding: .8em 1em; |
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
| /** | |
| * Adjusting tabs | |
| */ | |
| pre { | |
| padding: .5em; | |
| line-height: 1.5; | |
| background: hsl(20, 50%, 95%); | |
| font-family: Consolas, Monaco, monospace; | |
| font-variant-ligatures: common-ligatures |
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
| /** | |
| * folded-corner | |
| */ | |
| div{ | |
| position:relative; | |
| background: #f06; | |
| background: linear-gradient(210deg,transparent 30px,#f06 0) no-repeat; | |
| margin:100px; | |
| padding:20px; | |
| height:100px; |
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 | |
| */ | |
| background: background: conic-gradient(red, yellow, lime, aqua, blue, fuchsia, red); |
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
| /** | |
| * Chessboard-step | |
| */ | |
| background: #eee; | |
| background-image: linear-gradient(45deg,#f06 25%,transparent 0, | |
| transparent 75%,yellow 0), | |
| linear-gradient(45deg,#f06 25%,transparent 0, | |
| transparent 75%,yellow 0); | |
| background-size:30px 30px; |
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
| /** | |
| * Chessboard | |
| */ | |
| background: #eee; | |
| background-image: | |
| linear-gradient(45deg,#bbb 25%, transparent 0, | |
| transparent 75%,#bbb 0), | |
| linear-gradient(45deg,#bbb 25%, transparent 0,transparent 75%,#bbb 0); | |
| background-size: 30px 30px; | |
| background-position:0 0,15px 15px; |
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
| /** | |
| * dot supper | |
| */ | |
| background: #f06; | |
| background-image: radial-gradient(yellow 30%,transparent 0), | |
| radial-gradient(yellow 30%,transparent 0); | |
| background-size:30px 30px; | |
| background-position:0 0,15px 15px; |
NewerOlder