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
(function () { | |
var ONE_FRAME_TIME = 1000.0 / 60.0; | |
Loopy = (function () { | |
var _loopy; | |
function Loopy() { | |
this.startTime = 0; | |
this.stepGroups = []; | |
_loopy = this; | |
} |
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
/** | |
* Default Theme | |
*/ | |
body { | |
font-family: sans-serif; | |
font-size: 16px; | |
} | |
.option-list { |
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
/** | |
* Flat Theme | |
*/ | |
body { | |
font-family: sans-serif; | |
} | |
.option-list { | |
counter-reset: options; |
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
/** | |
* 3D Theme | |
*/ | |
body { | |
font-family: sans-serif; | |
} | |
.option-list { | |
counter-reset: options; |
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
/** | |
* Fancy Theme | |
*/ | |
body { | |
font-family: sans-serif; | |
} | |
.option-list { | |
counter-reset: options; |
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
/** | |
* Decision Button | |
*/ | |
body { | |
background: #162427; | |
} | |
.button { | |
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
/** | |
* Panel | |
*/ | |
body { | |
font-family: sans-serif; | |
} | |
.panel { | |
margin: 10px; |
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
/** | |
* Default Theme (shadow vs gradient) | |
*/ | |
body { | |
font-family: sans-serif; | |
font-size: 16px; | |
} | |
.option-list { |
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 | |
*/ | |
.box { | |
padding: 10px; | |
margin: 30px; | |
font-weight: bold; | |
font-family: sans-serif; | |
} |
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 | |
*/ | |
.box { | |
padding: 10px; | |
margin: 30px; | |
font-weight: bold; | |
font-family: sans-serif; | |
} |
OlderNewer