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
/** | |
* 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
/** | |
* 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
/** | |
* 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
(function () { | |
var ONE_FRAME_TIME = 1000.0 / 60.0; | |
Loopy = (function () { | |
var _loopy; | |
function Loopy() { | |
this.startTime = 0; | |
this.stepGroups = []; | |
_loopy = this; | |
} |
NewerOlder