- Editable as text, preferably markdown
- Plays in a browser
- Deployable to heroku or other service completely statically
- clean default look that is easy to customize without slogging through generated HTML
- hard-fix the dimensions, e.g. 1024x768 for projectors
- support for remote control for advancing
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
| /** | |
| * Modified Carpet | |
| */ | |
| background: | |
| radial-gradient(0% 0%, rgba(150, 150, 150, 0) 9px, #CCD3DD 10px, rgba(150, 150, 150, 0) 11px, transparent), | |
| radial-gradient(100% 100%, rgba(150, 150, 150, 0) 9px, #CCD3DD 10px, rgba(150, 150, 150, 0) 11px, transparent), | |
| radial-gradient(0% 100%, rgba(150, 150, 150, 0) 9px, #BEC4CE 10px, rgba(150, 150, 150, 0) 11px, transparent), | |
| #EBEEF4; | |
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
| /** | |
| * Modified Carpet | |
| */ | |
| background: | |
| radial-gradient(0% 0%, rgba(150, 150, 150, 0) 9px, #CCD3DD 10px, rgba(150, 150, 150, 0) 11px, transparent), | |
| radial-gradient(100% 100%, rgba(150, 150, 150, 0) 9px, #CCD3DD 10px, rgba(150, 150, 150, 0) 11px, transparent), | |
| radial-gradient(0% 100%, rgba(150, 150, 150, 0) 9px, #BEC4CE 10px, rgba(150, 150, 150, 0) 11px, transparent), | |
| #EBEEF4; | |
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
| ### | |
| Text masked spring particles | |
| Author: Kushagra Gour a.k.a. Chin Chang | |
| ### | |
| # requestanimationframe polyfill | |
| window.requestAnimFrame = (-> | |
| return window.requestAnimationFrame || | |
| window.webkitRequestAnimationFrame || | |
| window.mozRequestAnimationFrame || | |
| window.oRequestAnimationFrame || |
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
| ### | |
| Text masked spring particles | |
| Author: Kushagra Gour a.k.a. Chin Chang | |
| ### | |
| # requestanimationframe polyfill | |
| window.requestAnimFrame = (-> | |
| return window.requestAnimationFrame || | |
| window.webkitRequestAnimationFrame || | |
| window.mozRequestAnimationFrame || |
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
| /** | |
| * Challenge by HTeuMeuLeu | |
| */ | |
| body { | |
| padding:50px; | |
| background:#2fa7ca; | |
| } |
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
| /** | |
| * Multi-level dropdown menus | |
| */ | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } |
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 Box model demo | |
| */ | |
| body { | |
| width: 300px; | |
| height: 200px; | |
| padding: 30px; | |
| border-width: 10px; | |
| /*box-sizing: border-box;*/ |
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
| /** | |
| * Floating buttons with adjusting drop shadows @simurai | |
| */ | |
| html { | |
| background: hsl(30,40%,90%); | |
| } | |
| body { | |
| text-align: center; | |
| padding-top: 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
| /** | |
| * Gradient The first commented line is your dabblet’s title | |
| */ | |
| background: #f06; | |
| background: linear-gradient(45deg, #f06, yellow); | |
| min-height: 100%; |