- about:blank
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 Modals (no Javascript) | |
| */ | |
| .modal-input, .modal-outer, .modal-inner | |
| { | |
| display: none; | |
| } | |
| :checked + .modal-outer { |
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 Calendar | |
| */ | |
| .cal { | |
| width: 14.4375rem; | |
| border: solid black; | |
| border-width: 0 1px 1px 0; | |
| } |
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 Calendar | |
| */ | |
| .cal { | |
| width: 14.4375rem; | |
| border: solid black; | |
| border-width: 0 1px 1px 0; | |
| } |
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: #f06; | |
| background: linear-gradient(45deg, #f06, yellow); | |
| min-height: 100%;*/ | |
| #s { | |
| transition: width 1s; |
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
| /** | |
| * Expanding input | |
| */ | |
| /* | |
| background: #f06; | |
| background: linear-gradient(45deg, #f06, yellow); | |
| min-height: 100%;*/ | |
| #s { | |
| transition: width 1s; |
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
| /** | |
| * Indeterminate progress bar | |
| */ | |
| @import url('http://netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/css/bootstrap.min.css'); | |
| @keyframes push | |
| { | |
| 0% {width: 0%;} | |
| 50% {width: 70%;} | |
| 100% {width: 0%;} |
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
| /** | |
| * Indeterminate progress bar | |
| */ | |
| @import url('http://netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/css/bootstrap.min.css'); | |
| @keyframes push | |
| { | |
| 0% {width: 0%;} | |
| 50% {width: 70%;} | |
| 100% {width: 0%;} |
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
| urlencode() { | |
| setopt localoptions extendedglob | |
| input=( ${(s::)1} ) | |
| print ${(j::)input/(#b)([^A-Za-z0-9_.\!~*\'\(\)-])/%${(l:2::0:)$(([##16]#match))}} | |
| } |
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
| https://ssl.google-analytics.com/ga.js |
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
| define('ndust', [], function() { | |
| var dust = {}; | |
| dust.helpers = {}; | |
| dust.cache = {}; | |
| dust.register = function(name, tmpl) { | |
| if (!name) return; | |
| dust.cache[name] = tmpl; |
OlderNewer