robeaux 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.markdown +41 -61
- data/css/application.css +2 -0
- data/css/application.css.map +7 -0
- data/index.html +5 -39
- data/js/script.js +7 -0
- data/robeaux.gemspec +16 -8
- metadata +11 -104
- data/.gitignore +0 -1
- data/Gruntfile.js +0 -43
- data/Makefile +0 -22
- data/css/fonts.css +0 -59
- data/css/main.css +0 -1
- data/css/normalize.css +0 -425
- data/css/style.css +0 -558
- data/css/themes/artoo.css +0 -3
- data/css/themes/blackboard.css +0 -1
- data/css/themes/cylon.css +0 -3
- data/css/themes/dark.css +0 -1
- data/css/themes/gobot.css +0 -3
- data/css/themes/gray.css +0 -1
- data/css/themes/whiteboard.css +0 -1
- data/js/app.js +0 -1
- data/js/controllers/device_commands_ctrl.js +0 -81
- data/js/controllers/device_events_ctrl.js +0 -31
- data/js/controllers/index_ctrl.js +0 -9
- data/js/controllers/nav_ctrl.js +0 -5
- data/js/controllers/robot_commands_ctrl.js +0 -33
- data/js/controllers/robot_ctrl.js +0 -25
- data/js/controllers/themes_ctrl.js +0 -36
- data/js/controllers/widget_editor_ctrl.js +0 -44
- data/js/controllers/widgets_ctrl.js +0 -40
- data/js/directives/widget.js +0 -50
- data/js/router.js +0 -27
- data/js/services/themes.js +0 -90
- data/js/services/widgets.js +0 -86
- data/js/vendor/angular-route.min.js +0 -13
- data/js/vendor/angular.min.js +0 -212
- data/js/widgets/attitude.html +0 -32
- data/js/widgets/attitude.js +0 -27
- data/js/widgets/mindwave.html +0 -51
- data/js/widgets/mindwave.js +0 -23
- data/less/app.less +0 -21
- data/less/objects/buttons.less +0 -32
- data/less/objects/connections.less +0 -28
- data/less/objects/device.less +0 -30
- data/less/objects/forms.less +0 -29
- data/less/objects/list.less +0 -27
- data/less/objects/nav.less +0 -33
- data/less/objects/robot.less +0 -43
- data/less/objects/themes.less +0 -18
- data/less/objects/widgets.less +0 -85
- data/less/support/buttons.less +0 -39
- data/less/support/container.less +0 -9
- data/less/support/forms.less +0 -18
- data/less/support/mixins.less +0 -3
- data/less/themes/blackboard.less +0 -158
- data/less/themes/dark.less +0 -148
- data/less/themes/default.less +0 -52
- data/less/themes/gray.less +0 -121
- data/less/themes/whiteboard.less +0 -152
- data/less/vendor/elements.less +0 -156
- data/less/vendor/normalize.less +0 -425
- data/less/vendor/semantic-grid.less +0 -67
- data/less/views/devices.less +0 -47
- data/less/views/robots.less +0 -132
- data/less/views/themes.less +0 -31
- data/less/views/widgets.less +0 -50
- data/package.json +0 -21
- data/partials/device.html +0 -76
- data/partials/index.html +0 -17
- data/partials/robot.html +0 -127
- data/partials/themes.html +0 -42
- data/partials/widget_editor.html +0 -68
- data/test/controllers/device_commands_ctrl.js +0 -129
- data/test/controllers/device_events_ctrl.js +0 -82
- data/test/controllers/index_ctrl.js +0 -48
- data/test/controllers/nav_ctrl.js +0 -40
- data/test/controllers/robot_commands_ctrl.js +0 -127
- data/test/controllers/robot_ctrl.js +0 -62
- data/test/controllers/themes_ctrl.js +0 -96
- data/test/controllers/widget_editor_ctrl.js +0 -111
- data/test/controllers/widgets_ctrl.js +0 -74
- data/test/functions/functions.js +0 -30
- data/test/karma.conf.js +0 -76
- data/test/karma_test_all.conf.js +0 -23
- data/test/karma_test_controllers.conf.js +0 -19
- data/test/karma_test_functions.conf.js +0 -14
- data/test/karma_test_services.conf.js +0 -17
- data/test/services/themes.js +0 -122
- data/test/services/widgets.js +0 -104
- data/test/support/myDevice.json +0 -15
- data/test/support/myRobot.json +0 -31
- data/test/support/robots.json +0 -33
- data/test/support/themes.json +0 -9
- data/test/support/widgets.json +0 -18
- data/test/vendor/angular-mocks.js +0 -2163
- data/test/vendor/jasmine-jquery.js +0 -704
- data/test/vendor/jquery.js +0 -8755
data/Makefile
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
VERSION := $(shell node -e "console.log(require('./package.json').version)")
|
2
|
-
|
3
|
-
.PHONY: test release test-controllers test-services test-functions
|
4
|
-
|
5
|
-
test:
|
6
|
-
@./node_modules/karma/bin/karma start ./test/karma_test_all.conf.js --no-auto-watch --single-run
|
7
|
-
|
8
|
-
test-controllers:
|
9
|
-
@./node_modules/karma/bin/karma start ./test/karma_test_controllers.conf.js --no-auto-watch --single-run
|
10
|
-
|
11
|
-
test-services:
|
12
|
-
@./node_modules/karma/bin/karma start ./test/karma_test_services.conf.js --no-auto-watch --single-run
|
13
|
-
|
14
|
-
test-functions:
|
15
|
-
@./node_modules/karma/bin/karma start ./test/karma_test_functions.conf.js --no-auto-watch --single-run
|
16
|
-
|
17
|
-
release:
|
18
|
-
@git tag -m "$(VERSION)" v$(VERSION)
|
19
|
-
@git push --tags
|
20
|
-
@gem build robeaux.gemspec
|
21
|
-
@gem push robeaux-$(VERSION).gem
|
22
|
-
@npm publish ./
|
data/css/fonts.css
DELETED
@@ -1,59 +0,0 @@
|
|
1
|
-
@font-face {
|
2
|
-
font-family: 'Inconsolata';
|
3
|
-
src: url('/fonts/inconsolata-bold-webfont.eot');
|
4
|
-
src: url('/fonts/inconsolata-bold-webfont.eot?#iefix') format('embedded-opentype'),
|
5
|
-
url('/fonts/inconsolata-bold-webfont.woff') format('woff'),
|
6
|
-
url('/fonts/inconsolata-bold-webfont.ttf') format('truetype'),
|
7
|
-
url('/fonts/inconsolata-bold-webfont.svg#inconsolatabold') format('svg');
|
8
|
-
font-weight: 700;
|
9
|
-
font-style: normal;
|
10
|
-
|
11
|
-
}
|
12
|
-
|
13
|
-
@font-face {
|
14
|
-
font-family: 'Inconsolata';
|
15
|
-
src: url('/fonts/inconsolata-regular-webfont.eot');
|
16
|
-
src: url('/fonts/inconsolata-regular-webfont.eot?#iefix') format('embedded-opentype'),
|
17
|
-
url('/fonts/inconsolata-regular-webfont.woff') format('woff'),
|
18
|
-
url('/fonts/inconsolata-regular-webfont.ttf') format('truetype'),
|
19
|
-
url('/fonts/inconsolata-regular-webfont.svg#inconsolataregular') format('svg');
|
20
|
-
font-weight: 400;
|
21
|
-
font-style: normal;
|
22
|
-
|
23
|
-
}
|
24
|
-
|
25
|
-
@font-face {
|
26
|
-
font-family: 'Roboto Slab';
|
27
|
-
src: url('/fonts/robotoslab-bold-webfont.eot');
|
28
|
-
src: url('/fonts/robotoslab-bold-webfont.eot?#iefix') format('embedded-opentype'),
|
29
|
-
url('/fonts/robotoslab-bold-webfont.woff') format('woff'),
|
30
|
-
url('/fonts/robotoslab-bold-webfont.ttf') format('truetype'),
|
31
|
-
url('/fonts/robotoslab-bold-webfont.svg#roboto_slabbold') format('svg');
|
32
|
-
font-weight: 700;
|
33
|
-
font-style: normal;
|
34
|
-
|
35
|
-
}
|
36
|
-
|
37
|
-
@font-face {
|
38
|
-
font-family: 'Roboto';
|
39
|
-
src: url('/fonts/roboto-bold-webfont.eot');
|
40
|
-
src: url('/fonts/roboto-bold-webfont.eot?#iefix') format('embedded-opentype'),
|
41
|
-
url('/fonts/roboto-bold-webfont.woff') format('woff'),
|
42
|
-
url('/fonts/roboto-bold-webfont.ttf') format('truetype'),
|
43
|
-
url('/fonts/roboto-bold-webfont.svg#robotobold') format('svg');
|
44
|
-
font-weight: 700;
|
45
|
-
font-style: normal;
|
46
|
-
|
47
|
-
}
|
48
|
-
|
49
|
-
@font-face {
|
50
|
-
font-family: 'Roboto';
|
51
|
-
src: url('/fonts/roboto-regular-webfont.eot');
|
52
|
-
src: url('/fonts/roboto-regular-webfont.eot?#iefix') format('embedded-opentype'),
|
53
|
-
url('/fonts/roboto-regular-webfont.woff') format('woff'),
|
54
|
-
url('/fonts/roboto-regular-webfont.ttf') format('truetype'),
|
55
|
-
url('/fonts/roboto-regular-webfont.svg#robotoregular') format('svg');
|
56
|
-
font-weight: 400;
|
57
|
-
font-style: normal;
|
58
|
-
|
59
|
-
}
|
data/css/main.css
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
.btn{padding:10px 15px;font-size:15px;line-height:20px;border-radius:5px;display:inline-block;border:0}.btn:hover{cursor:pointer}.btn-big{padding:15px 30px;font-size:15px;line-height:15px;border-radius:5px}.btn-robot{color:#fff;background-color:#1cbbd8;border-color:#fff;text-transform:uppercase}.btn-robot:hover,.btn-robot:focus,.btn-robot:active,.btn-robot.active{color:#fff;background-color:#1694ab;border-color:#e0e0e0}.btn-robot:active,.btn-robot.active{background-image:none}.btn-robot.disabled,.btn-robot[disabled],fieldset[disabled] .btn-robot,.btn-robot.disabled:hover,.btn-robot[disabled]:hover,fieldset[disabled] .btn-robot:hover,.btn-robot.disabled:focus,.btn-robot[disabled]:focus,fieldset[disabled] .btn-robot:focus,.btn-robot.disabled:active,.btn-robot[disabled]:active,fieldset[disabled] .btn-robot:active,.btn-robot.disabled.active,.btn-robot[disabled].active,fieldset[disabled] .btn-robot.active{background-color:#1cbbd8;border-color:#fff}.btn-run,.btn-reset{color:#fff;background-color:#c36148;border-color:#fff;text-transform:uppercase}.btn-run:hover,.btn-reset:hover,.btn-run:focus,.btn-reset:focus,.btn-run:active,.btn-reset:active,.btn-run.active,.btn-reset.active{color:#fff;background-color:#a34c35;border-color:#e0e0e0}.btn-run:active,.btn-reset:active,.btn-run.active,.btn-reset.active{background-image:none}.btn-run.disabled,.btn-reset.disabled,.btn-run[disabled],.btn-reset[disabled],fieldset[disabled] .btn-run,fieldset[disabled] .btn-reset,.btn-run.disabled:hover,.btn-reset.disabled:hover,.btn-run[disabled]:hover,.btn-reset[disabled]:hover,fieldset[disabled] .btn-run:hover,fieldset[disabled] .btn-reset:hover,.btn-run.disabled:focus,.btn-reset.disabled:focus,.btn-run[disabled]:focus,.btn-reset[disabled]:focus,fieldset[disabled] .btn-run:focus,fieldset[disabled] .btn-reset:focus,.btn-run.disabled:active,.btn-reset.disabled:active,.btn-run[disabled]:active,.btn-reset[disabled]:active,fieldset[disabled] .btn-run:active,fieldset[disabled] .btn-reset:active,.btn-run.disabled.active,.btn-reset.disabled.active,.btn-run[disabled].active,.btn-reset[disabled].active,fieldset[disabled] .btn-run.active,fieldset[disabled] .btn-reset.active{background-color:#c36148;border-color:#fff}.btn-device,.btn-save{color:#fff;background-color:#48caac;border-color:#fff;text-transform:uppercase}.btn-device:hover,.btn-save:hover,.btn-device:focus,.btn-save:focus,.btn-device:active,.btn-save:active,.btn-device.active,.btn-save.active{color:#fff;background-color:#32ad91;border-color:#e0e0e0}.btn-device:active,.btn-save:active,.btn-device.active,.btn-save.active{background-image:none}.btn-device.disabled,.btn-save.disabled,.btn-device[disabled],.btn-save[disabled],fieldset[disabled] .btn-device,fieldset[disabled] .btn-save,.btn-device.disabled:hover,.btn-save.disabled:hover,.btn-device[disabled]:hover,.btn-save[disabled]:hover,fieldset[disabled] .btn-device:hover,fieldset[disabled] .btn-save:hover,.btn-device.disabled:focus,.btn-save.disabled:focus,.btn-device[disabled]:focus,.btn-save[disabled]:focus,fieldset[disabled] .btn-device:focus,fieldset[disabled] .btn-save:focus,.btn-device.disabled:active,.btn-save.disabled:active,.btn-device[disabled]:active,.btn-save[disabled]:active,fieldset[disabled] .btn-device:active,fieldset[disabled] .btn-save:active,.btn-device.disabled.active,.btn-save.disabled.active,.btn-device[disabled].active,.btn-save[disabled].active,fieldset[disabled] .btn-device.active,fieldset[disabled] .btn-save.active{background-color:#48caac;border-color:#fff}.btn-connect{color:#fff;background-color:#dec763;border-color:#fff;text-transform:uppercase}.btn-connect:hover,.btn-connect:focus,.btn-connect:active,.btn-connect.active{color:#fff;background-color:#d5b839;border-color:#e0e0e0}.btn-connect:active,.btn-connect.active{background-image:none}.btn-connect.disabled,.btn-connect[disabled],fieldset[disabled] .btn-connect,.btn-connect.disabled:hover,.btn-connect[disabled]:hover,fieldset[disabled] .btn-connect:hover,.btn-connect.disabled:focus,.btn-connect[disabled]:focus,fieldset[disabled] .btn-connect:focus,.btn-connect.disabled:active,.btn-connect[disabled]:active,fieldset[disabled] .btn-connect:active,.btn-connect.disabled.active,.btn-connect[disabled].active,fieldset[disabled] .btn-connect.active{background-color:#dec763;border-color:#fff}.connections .robot-devices .name{display:inline-block;margin-left:20px;font-weight:bold}.connections .robot-devices .details{display:inline-block;margin-left:20px;color:#1cbbd8}.connections .robot-connections .name{display:inline-block;margin-left:20px;color:#1cbbd8}.connections .robot-connections .details{display:inline-block;margin-left:20px}.device-detail h2{text-align:center}.device-detail table{margin-top:15px}.device-detail table th{border-bottom:1px solid #ccc;line-height:34px}.device-detail table td{font-family:Inconsolata,monospace;padding:3px}.device-detail .listeners{margin-top:0}.device-detail .remove{color:#f00}.device-detail .remove:hover{cursor:pointer}input[type="text"],select,textarea{display:inline-block;line-height:1.42857143;font-size:15px;color:#444;padding:6px 12px;background-color:#fff;background-image:none;border:1px solid #ccc;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;box-sizing:border-box}input[type="text"]:focus,select:focus,textarea:focus{border-color:#1cbbd8;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(28, 187, 216, 0.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(28, 187, 216, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(28, 187, 216, 0.6)}button{outline:none}button::-moz-focus-inner,input[type="reset"]::-moz-focus-inner,input[type="button"]::-moz-focus-inner,input[type="submit"]::-moz-focus-inner,input[type="file"]>input[type="button"]::-moz-focus-inner{outline:none}button:focus::-moz-focus-inner,input[type="reset"]:focus::-moz-focus-inner,input[type="button"]:focus::-moz-focus-inner,input[type="submit"]:focus::-moz-focus-inner,input[type="file"]>input[type="button"]:focus::-moz-focus-inner{outline:none}.list{margin-top:20px}.list .close{float:right;color:#ccc}.list .close:hover{color:#f00;cursor:pointer}.list .theme,.list .widget{display:block;clear:both;padding:5px;border-bottom:1px dotted #ccc}.list .theme:hover,.list .widget:hover{cursor:pointer}.list .selected{background:#eee}nav{background:#000;height:70px;margin-bottom:20px}nav .logo{display:inline-block;margin:15px 15px 0 15px}nav .links{float:right;margin-top:15px}nav .links a{color:#fff;text-decoration:none;display:inline-block;padding:10px 15px;font-size:15px;line-height:20px;border-radius:2px}nav .links a:hover{color:#1cbbd8;text-decoration:none}nav .links .active{background:#1cbbd8}nav .links .active:hover{color:#fff}.robot{width:960px;padding:0;margin-left:auto;margin-right:auto;display:block}.robot .details{float:right;line-height:43px}.robot .details span{color:#1cbbd8;margin-left:50px}.robot .details strong{color:#444;margin-right:20px}.robot .name{margin-left:20px}.robot .commands{*zoom:1}.robot .commands:before,.robot .commands:after{content:"";display:table}.robot .commands:after{clear:both}.robot .commands button{display:block;font-weight:bold;margin-top:15px}.robot .commands table th{border-bottom:1px solid #ccc;line-height:34px}.robot .commands table td{font-family:Inconsolata,monospace;padding:3px}.themes .new-theme{*zoom:1}.themes .new-theme:before,.themes .new-theme:after{content:"";display:table}.themes .new-theme:after{clear:both}.themes .new-theme input{padding:8px 12px}.themes .footer{display:block;text-align:right}.themes .selector{margin-top:20px}.widgets .new-widget input,.widgets .new-attr input{padding:8px 12px}.widgets .new-attr{padding-top:15px}.widgets .attrs{padding-bottom:20px}.widgets .footer{text-align:right}.widgets .footer .btn-reset{margin-right:10px}.widgets .new-widget-instance{position:fixed;top:0;left:0;background-color:rgba(0,0,0,0.5);z-index:99;overflow:hidden}.widgets .panel{background:#fff;padding:6px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;position:relative;-webkit-box-shadow:0 0 5px rgba(0,0,0,0.3);-moz-box-shadow:0 0 5px rgba(0,0,0,0.3);box-shadow:0 0 5px rgba(0,0,0,0.3);overflow:hidden}.widgets .panel .panel-header,.widgets .panel .panel-body,.widgets .panel .panel-footer{*zoom:1}.widgets .panel .panel-header:before,.widgets .panel .panel-body:before,.widgets .panel .panel-footer:before,.widgets .panel .panel-header:after,.widgets .panel .panel-body:after,.widgets .panel .panel-footer:after{content:"";display:table}.widgets .panel .panel-header:after,.widgets .panel .panel-body:after,.widgets .panel .panel-footer:after{clear:both}.widgets .panel .panel-header{border-bottom:1px solid #eaeaea}.widgets .panel .panel-footer{border-top:1px solid #eaeaea;padding-top:6px;margin-top:12px;text-align:right}.widgets .panel .close{position:absolute;top:4px;right:10px;color:#ccc}.widgets .panel .close:hover{cursor:pointer;color:#f00}.widgets .panel h2{margin:0 0 15px 0;text-align:center}.widgets .panel h3,.widgets .panel label{font-size:14px}.widgets .panel select{display:block}.widgets .panel .attr-element{*zoom:1;margin-bottom:10px}.widgets .panel .attr-element:before,.widgets .panel .attr-element:after{content:"";display:table}.widgets .panel .attr-element:after{clear:both}.device-detail .device-header{width:960px;padding:0;margin-left:auto;margin-right:auto;display:block}.device-detail .device-header h2{display:inline;float:left;width:47.91666667%;margin:0 1.04166667%}.device-detail .device-commands{display:inline;float:left;width:47.91666667%;margin:0 1.04166667%}.device-detail .device-events{display:inline;float:left;width:47.91666667%;margin:0 1.04166667%}.device-detail .device-events .input{display:inline;float:left;width:47.91666667%;margin:0 1.04166667%}.device-detail .device-events .input input{display:inline;float:left;width:56.25%;margin:0 1.04166667%;padding:8px 12px;margin:0 2.08166667% 0 0}.device-detail .device-events .input button{display:inline;float:left;width:39.58333333%;margin:0 1.04166667%}.device-detail .device-events .listeners-div{display:inline;float:left;width:47.91666667%;margin:0 1.04166667%;margin-bottom:30px}.device-detail .device-events .listeners-div table{width:100%}.device-detail .device-events .events{width:100%}.device-detail .remove{width:10%}body{background:#efeef4;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;color:#444}.container-wrap{margin-bottom:30px}.container,.robot,.widgets,.connections,.themes{width:960px;padding:0;margin-left:auto;margin-right:auto;display:block}.row{background:#fff;padding:15px 0;margin-top:10px;*zoom:1}.row:before,.row:after{content:"";display:table}.row:after{clear:both}.robot-details{display:inline;float:left;width:97.91666667%;margin:0 1.04166667%}.robot h2{display:inline;float:left;width:97.91666667%;margin:0 1.04166667%;text-align:center;margin-bottom:15px}.robot .input,.robot .results{display:inline;float:left;width:47.91666667%;margin:0 1.04166667%}.robot-detail .widgets .new-widget-instance{height:100vh;width:100%}.robot-detail .widgets .active-widgets .add-widget{display:inline;float:left;width:22.91666667%;margin:0 1.04166667%}.robot-detail .widgets .active-widgets button{font-size:2em}.robot-detail .widgets .active-widgets widget{display:inline;float:left;width:72.91666667%;margin:0 1.04166667%}.robot-detail .widgets .panel{margin:10% auto;width:600px}.robot-detail .widgets .panel .type{display:inline;float:left;width:39.58333333%;margin:0 1.04166667%}.robot-detail .widgets .panel .attrs{display:inline;float:left;width:56.25%;margin:0 1.04166667%}.robot-detail .widgets .panel .attrs label{display:inline;float:left;width:31.25%;margin:0 1.04166667%}.robot-detail .widgets .panel .attrs input{display:inline;float:left;width:64.58333333%;margin:0 1.04166667%}.robot-detail .robot-devices{display:inline;float:left;width:47.91666667%;margin:0 1.04166667%}.robot-detail .robot-connection{display:inline;float:left;width:47.91666667%;margin:0 1.04166667%}.commands .param,.device-commands .param{display:block;width:104.16666667%;margin:0 -2.08333333%;*zoom:1;height:40px}.commands .param:before,.device-commands .param:before,.commands .param:after,.device-commands .param:after{content:"";display:table}.commands .param:after,.device-commands .param:after{clear:both}.commands .param input[type='text'],.device-commands .param input[type='text']{display:inline;float:left;width:29.16666667%;margin:0 2.08333333%}.commands .param select,.device-commands .param select{display:inline;float:left;width:20.83333333%;margin:0 2.08333333%}.commands .param .close,.device-commands .param .close{display:inline;float:left;width:4.16666667%;margin:0 2.08333333%;line-height:34px}.commands .param .close:hover,.device-commands .param .close:hover{color:#f00;cursor:pointer}.commands .input>select,.device-commands .input>select,.commands>select,.device-commands>select{width:100%;margin-left:auto;margin-right:auto;display:block;margin-bottom:15px}.commands button,.device-commands button{width:70%;margin-top:15px;margin-left:auto;margin-right:auto;display:block}.commands table,.device-commands table{width:100%}.themes .sidebar{display:inline;float:left;width:31.25%;margin:0 1.04166667%}.themes .new-theme{display:block;width:106.25%;margin:0 -3.125%;*zoom:1}.themes .new-theme:before,.themes .new-theme:after{content:"";display:table}.themes .new-theme:after{clear:both}.themes .new-theme input{display:inline;float:left;width:68.75%;margin:0 3.125%}.themes .new-theme button{display:inline;float:left;width:18.75%;margin:0 3.125%}.themes .editor{display:inline;float:left;width:64.58333333%;margin:0 1.04166667%}.themes .editor textarea{width:100%;height:250px}.themes .footer{*zoom:1;display:inline;float:left;width:97.91666667%;margin:0 1.04166667%}.themes .footer:before,.themes .footer:after{content:"";display:table}.themes .footer:after{clear:both}.widgets .sidebar{display:inline;float:left;width:22.91666667%;margin:0 1.04166667%}.widgets .new-widget{display:block;width:108.33333333%;margin:0 -4.16666667%;*zoom:1}.widgets .new-widget:before,.widgets .new-widget:after{content:"";display:table}.widgets .new-widget:after{clear:both}.widgets .new-widget input{display:inline;float:left;width:58.33333333%;margin:0 4.16666667%}.widgets .new-widget button{display:inline;float:left;width:25%;margin:0 4.16666667%}.widgets .new-attr{display:block;width:102.77777778%;margin:0 -1.38888889%;*zoom:1}.widgets .new-attr:before,.widgets .new-attr:after{content:"";display:table}.widgets .new-attr:after{clear:both}.widgets .new-attr input{display:inline;float:left;width:52.77777778%;margin:0 1.38888889%}.widgets .new-attr button{display:inline;float:left;width:30.55555556%;margin:0 1.38888889%}.widgets .editor{display:inline;float:left;width:72.91666667%;margin:0 1.04166667%}.widgets .attrs{display:inline;float:left;width:97.22222222%;margin:0 1.38888889%}.widgets .field{display:inline;float:left;width:47.22222222%;margin:0 1.38888889%}.widgets .field textarea{width:100%;min-height:250px}.widgets .footer{display:inline;float:left;width:97.91666667%;margin:0 1.04166667%}
|
data/css/normalize.css
DELETED
@@ -1,425 +0,0 @@
|
|
1
|
-
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
|
2
|
-
|
3
|
-
/**
|
4
|
-
* 1. Set default font family to sans-serif.
|
5
|
-
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
6
|
-
* user zoom.
|
7
|
-
*/
|
8
|
-
|
9
|
-
html {
|
10
|
-
font-family: sans-serif; /* 1 */
|
11
|
-
-ms-text-size-adjust: 100%; /* 2 */
|
12
|
-
-webkit-text-size-adjust: 100%; /* 2 */
|
13
|
-
}
|
14
|
-
|
15
|
-
/**
|
16
|
-
* Remove default margin.
|
17
|
-
*/
|
18
|
-
|
19
|
-
body {
|
20
|
-
margin: 0;
|
21
|
-
}
|
22
|
-
|
23
|
-
/* HTML5 display definitions
|
24
|
-
========================================================================== */
|
25
|
-
|
26
|
-
/**
|
27
|
-
* Correct `block` display not defined for any HTML5 element in IE 8/9.
|
28
|
-
* Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
|
29
|
-
* Correct `block` display not defined for `main` in IE 11.
|
30
|
-
*/
|
31
|
-
|
32
|
-
article,
|
33
|
-
aside,
|
34
|
-
details,
|
35
|
-
figcaption,
|
36
|
-
figure,
|
37
|
-
footer,
|
38
|
-
header,
|
39
|
-
hgroup,
|
40
|
-
main,
|
41
|
-
nav,
|
42
|
-
section,
|
43
|
-
summary {
|
44
|
-
display: block;
|
45
|
-
}
|
46
|
-
|
47
|
-
/**
|
48
|
-
* 1. Correct `inline-block` display not defined in IE 8/9.
|
49
|
-
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
50
|
-
*/
|
51
|
-
|
52
|
-
audio,
|
53
|
-
canvas,
|
54
|
-
progress,
|
55
|
-
video {
|
56
|
-
display: inline-block; /* 1 */
|
57
|
-
vertical-align: baseline; /* 2 */
|
58
|
-
}
|
59
|
-
|
60
|
-
/**
|
61
|
-
* Prevent modern browsers from displaying `audio` without controls.
|
62
|
-
* Remove excess height in iOS 5 devices.
|
63
|
-
*/
|
64
|
-
|
65
|
-
audio:not([controls]) {
|
66
|
-
display: none;
|
67
|
-
height: 0;
|
68
|
-
}
|
69
|
-
|
70
|
-
/**
|
71
|
-
* Address `[hidden]` styling not present in IE 8/9/10.
|
72
|
-
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
|
73
|
-
*/
|
74
|
-
|
75
|
-
[hidden],
|
76
|
-
template {
|
77
|
-
display: none;
|
78
|
-
}
|
79
|
-
|
80
|
-
/* Links
|
81
|
-
========================================================================== */
|
82
|
-
|
83
|
-
/**
|
84
|
-
* Remove the gray background color from active links in IE 10.
|
85
|
-
*/
|
86
|
-
|
87
|
-
a {
|
88
|
-
background: transparent;
|
89
|
-
}
|
90
|
-
|
91
|
-
/**
|
92
|
-
* Improve readability when focused and also mouse hovered in all browsers.
|
93
|
-
*/
|
94
|
-
|
95
|
-
a:active,
|
96
|
-
a:hover {
|
97
|
-
outline: 0;
|
98
|
-
}
|
99
|
-
|
100
|
-
/* Text-level semantics
|
101
|
-
========================================================================== */
|
102
|
-
|
103
|
-
/**
|
104
|
-
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
105
|
-
*/
|
106
|
-
|
107
|
-
abbr[title] {
|
108
|
-
border-bottom: 1px dotted;
|
109
|
-
}
|
110
|
-
|
111
|
-
/**
|
112
|
-
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
|
113
|
-
*/
|
114
|
-
|
115
|
-
b,
|
116
|
-
strong {
|
117
|
-
font-weight: bold;
|
118
|
-
}
|
119
|
-
|
120
|
-
/**
|
121
|
-
* Address styling not present in Safari and Chrome.
|
122
|
-
*/
|
123
|
-
|
124
|
-
dfn {
|
125
|
-
font-style: italic;
|
126
|
-
}
|
127
|
-
|
128
|
-
/**
|
129
|
-
* Address variable `h1` font-size and margin within `section` and `article`
|
130
|
-
* contexts in Firefox 4+, Safari, and Chrome.
|
131
|
-
*/
|
132
|
-
|
133
|
-
h1 {
|
134
|
-
font-size: 2em;
|
135
|
-
margin: 0.67em 0;
|
136
|
-
}
|
137
|
-
|
138
|
-
/**
|
139
|
-
* Address styling not present in IE 8/9.
|
140
|
-
*/
|
141
|
-
|
142
|
-
mark {
|
143
|
-
background: #ff0;
|
144
|
-
color: #000;
|
145
|
-
}
|
146
|
-
|
147
|
-
/**
|
148
|
-
* Address inconsistent and variable font size in all browsers.
|
149
|
-
*/
|
150
|
-
|
151
|
-
small {
|
152
|
-
font-size: 80%;
|
153
|
-
}
|
154
|
-
|
155
|
-
/**
|
156
|
-
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
157
|
-
*/
|
158
|
-
|
159
|
-
sub,
|
160
|
-
sup {
|
161
|
-
font-size: 75%;
|
162
|
-
line-height: 0;
|
163
|
-
position: relative;
|
164
|
-
vertical-align: baseline;
|
165
|
-
}
|
166
|
-
|
167
|
-
sup {
|
168
|
-
top: -0.5em;
|
169
|
-
}
|
170
|
-
|
171
|
-
sub {
|
172
|
-
bottom: -0.25em;
|
173
|
-
}
|
174
|
-
|
175
|
-
/* Embedded content
|
176
|
-
========================================================================== */
|
177
|
-
|
178
|
-
/**
|
179
|
-
* Remove border when inside `a` element in IE 8/9/10.
|
180
|
-
*/
|
181
|
-
|
182
|
-
img {
|
183
|
-
border: 0;
|
184
|
-
}
|
185
|
-
|
186
|
-
/**
|
187
|
-
* Correct overflow not hidden in IE 9/10/11.
|
188
|
-
*/
|
189
|
-
|
190
|
-
svg:not(:root) {
|
191
|
-
overflow: hidden;
|
192
|
-
}
|
193
|
-
|
194
|
-
/* Grouping content
|
195
|
-
========================================================================== */
|
196
|
-
|
197
|
-
/**
|
198
|
-
* Address margin not present in IE 8/9 and Safari.
|
199
|
-
*/
|
200
|
-
|
201
|
-
figure {
|
202
|
-
margin: 1em 40px;
|
203
|
-
}
|
204
|
-
|
205
|
-
/**
|
206
|
-
* Address differences between Firefox and other browsers.
|
207
|
-
*/
|
208
|
-
|
209
|
-
hr {
|
210
|
-
-moz-box-sizing: content-box;
|
211
|
-
box-sizing: content-box;
|
212
|
-
height: 0;
|
213
|
-
}
|
214
|
-
|
215
|
-
/**
|
216
|
-
* Contain overflow in all browsers.
|
217
|
-
*/
|
218
|
-
|
219
|
-
pre {
|
220
|
-
overflow: auto;
|
221
|
-
}
|
222
|
-
|
223
|
-
/**
|
224
|
-
* Address odd `em`-unit font size rendering in all browsers.
|
225
|
-
*/
|
226
|
-
|
227
|
-
code,
|
228
|
-
kbd,
|
229
|
-
pre,
|
230
|
-
samp {
|
231
|
-
font-family: monospace, monospace;
|
232
|
-
font-size: 1em;
|
233
|
-
}
|
234
|
-
|
235
|
-
/* Forms
|
236
|
-
========================================================================== */
|
237
|
-
|
238
|
-
/**
|
239
|
-
* Known limitation: by default, Chrome and Safari on OS X allow very limited
|
240
|
-
* styling of `select`, unless a `border` property is set.
|
241
|
-
*/
|
242
|
-
|
243
|
-
/**
|
244
|
-
* 1. Correct color not being inherited.
|
245
|
-
* Known issue: affects color of disabled elements.
|
246
|
-
* 2. Correct font properties not being inherited.
|
247
|
-
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
|
248
|
-
*/
|
249
|
-
|
250
|
-
button,
|
251
|
-
input,
|
252
|
-
optgroup,
|
253
|
-
select,
|
254
|
-
textarea {
|
255
|
-
color: inherit; /* 1 */
|
256
|
-
font: inherit; /* 2 */
|
257
|
-
margin: 0; /* 3 */
|
258
|
-
}
|
259
|
-
|
260
|
-
/**
|
261
|
-
* Address `overflow` set to `hidden` in IE 8/9/10/11.
|
262
|
-
*/
|
263
|
-
|
264
|
-
button {
|
265
|
-
overflow: visible;
|
266
|
-
}
|
267
|
-
|
268
|
-
/**
|
269
|
-
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
270
|
-
* All other form control elements do not inherit `text-transform` values.
|
271
|
-
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
|
272
|
-
* Correct `select` style inheritance in Firefox.
|
273
|
-
*/
|
274
|
-
|
275
|
-
button,
|
276
|
-
select {
|
277
|
-
text-transform: none;
|
278
|
-
}
|
279
|
-
|
280
|
-
/**
|
281
|
-
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
282
|
-
* and `video` controls.
|
283
|
-
* 2. Correct inability to style clickable `input` types in iOS.
|
284
|
-
* 3. Improve usability and consistency of cursor style between image-type
|
285
|
-
* `input` and others.
|
286
|
-
*/
|
287
|
-
|
288
|
-
button,
|
289
|
-
html input[type="button"], /* 1 */
|
290
|
-
input[type="reset"],
|
291
|
-
input[type="submit"] {
|
292
|
-
-webkit-appearance: button; /* 2 */
|
293
|
-
cursor: pointer; /* 3 */
|
294
|
-
}
|
295
|
-
|
296
|
-
/**
|
297
|
-
* Re-set default cursor for disabled elements.
|
298
|
-
*/
|
299
|
-
|
300
|
-
button[disabled],
|
301
|
-
html input[disabled] {
|
302
|
-
cursor: default;
|
303
|
-
}
|
304
|
-
|
305
|
-
/**
|
306
|
-
* Remove inner padding and border in Firefox 4+.
|
307
|
-
*/
|
308
|
-
|
309
|
-
button::-moz-focus-inner,
|
310
|
-
input::-moz-focus-inner {
|
311
|
-
border: 0;
|
312
|
-
padding: 0;
|
313
|
-
}
|
314
|
-
|
315
|
-
/**
|
316
|
-
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
317
|
-
* the UA stylesheet.
|
318
|
-
*/
|
319
|
-
|
320
|
-
input {
|
321
|
-
line-height: normal;
|
322
|
-
}
|
323
|
-
|
324
|
-
/**
|
325
|
-
* It's recommended that you don't attempt to style these elements.
|
326
|
-
* Firefox's implementation doesn't respect box-sizing, padding, or width.
|
327
|
-
*
|
328
|
-
* 1. Address box sizing set to `content-box` in IE 8/9/10.
|
329
|
-
* 2. Remove excess padding in IE 8/9/10.
|
330
|
-
*/
|
331
|
-
|
332
|
-
input[type="checkbox"],
|
333
|
-
input[type="radio"] {
|
334
|
-
box-sizing: border-box; /* 1 */
|
335
|
-
padding: 0; /* 2 */
|
336
|
-
}
|
337
|
-
|
338
|
-
/**
|
339
|
-
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
340
|
-
* `font-size` values of the `input`, it causes the cursor style of the
|
341
|
-
* decrement button to change from `default` to `text`.
|
342
|
-
*/
|
343
|
-
|
344
|
-
input[type="number"]::-webkit-inner-spin-button,
|
345
|
-
input[type="number"]::-webkit-outer-spin-button {
|
346
|
-
height: auto;
|
347
|
-
}
|
348
|
-
|
349
|
-
/**
|
350
|
-
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
351
|
-
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
|
352
|
-
* (include `-moz` to future-proof).
|
353
|
-
*/
|
354
|
-
|
355
|
-
input[type="search"] {
|
356
|
-
-webkit-appearance: textfield; /* 1 */
|
357
|
-
-moz-box-sizing: content-box;
|
358
|
-
-webkit-box-sizing: content-box; /* 2 */
|
359
|
-
box-sizing: content-box;
|
360
|
-
}
|
361
|
-
|
362
|
-
/**
|
363
|
-
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
|
364
|
-
* Safari (but not Chrome) clips the cancel button when the search input has
|
365
|
-
* padding (and `textfield` appearance).
|
366
|
-
*/
|
367
|
-
|
368
|
-
input[type="search"]::-webkit-search-cancel-button,
|
369
|
-
input[type="search"]::-webkit-search-decoration {
|
370
|
-
-webkit-appearance: none;
|
371
|
-
}
|
372
|
-
|
373
|
-
/**
|
374
|
-
* Define consistent border, margin, and padding.
|
375
|
-
*/
|
376
|
-
|
377
|
-
fieldset {
|
378
|
-
border: 1px solid #c0c0c0;
|
379
|
-
margin: 0 2px;
|
380
|
-
padding: 0.35em 0.625em 0.75em;
|
381
|
-
}
|
382
|
-
|
383
|
-
/**
|
384
|
-
* 1. Correct `color` not being inherited in IE 8/9/10/11.
|
385
|
-
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
386
|
-
*/
|
387
|
-
|
388
|
-
legend {
|
389
|
-
border: 0; /* 1 */
|
390
|
-
padding: 0; /* 2 */
|
391
|
-
}
|
392
|
-
|
393
|
-
/**
|
394
|
-
* Remove default vertical scrollbar in IE 8/9/10/11.
|
395
|
-
*/
|
396
|
-
|
397
|
-
textarea {
|
398
|
-
overflow: auto;
|
399
|
-
}
|
400
|
-
|
401
|
-
/**
|
402
|
-
* Don't inherit the `font-weight` (applied by a rule above).
|
403
|
-
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
404
|
-
*/
|
405
|
-
|
406
|
-
optgroup {
|
407
|
-
font-weight: bold;
|
408
|
-
}
|
409
|
-
|
410
|
-
/* Tables
|
411
|
-
========================================================================== */
|
412
|
-
|
413
|
-
/**
|
414
|
-
* Remove most spacing between table cells.
|
415
|
-
*/
|
416
|
-
|
417
|
-
table {
|
418
|
-
border-collapse: collapse;
|
419
|
-
border-spacing: 0;
|
420
|
-
}
|
421
|
-
|
422
|
-
td,
|
423
|
-
th {
|
424
|
-
padding: 0;
|
425
|
-
}
|