0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2024-11-23 09:26:51 -05:00
liabru-matter-js/demo/lib/matter-tools.demo.js
2017-07-02 23:56:24 +01:00

554 lines
No EOL
27 KiB
JavaScript

/*!
* matter-tools 0.11.1 by Liam Brummitt 2017-07-02
* https://github.com/liabru/matter-tools
* License MIT
*/
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory(require("matter-js"), require("matter-tools"));
else if(typeof define === 'function' && define.amd)
define(["matter-js", "matter-tools"], factory);
else if(typeof exports === 'object')
exports["Demo"] = factory(require("matter-js"), require("matter-tools"));
else
root["MatterTools"] = root["MatterTools"] || {}, root["MatterTools"]["Demo"] = factory(root["Matter"], root["MatterTools"]);
})(this, function(__WEBPACK_EXTERNAL_MODULE_1__, __WEBPACK_EXTERNAL_MODULE_2__) {
return /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ exports: {},
/******/ id: moduleId,
/******/ loaded: false
/******/ };
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/ // Flag the module as loaded
/******/ module.loaded = true;
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "/demo/lib";
/******/ // Load entry module and return exports
/******/ return __webpack_require__(0);
/******/ })
/************************************************************************/
/******/ ([
/* 0 */
/***/ function(module, exports, __webpack_require__) {
"use strict";
/**
* A tool for for running and testing example scenes.
* @module Demo
*/
var Matter = __webpack_require__(1);
var Common = Matter.Common;
var Demo = module.exports = {};
var Gui = __webpack_require__(2).Gui;
var Inspector = __webpack_require__(2).Inspector;
var ToolsCommon = __webpack_require__(3);
Demo._isIOS = window.navigator && /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
Demo._matterLink = 'http://brm.io/matter-js/';
/**
* Creates a new demo instance.
* See example for options and usage.
* @function Demo.create
* @param {} options
*/
Demo.create = function (options) {
var demo = Object.assign({
example: {
instance: null
},
examples: [],
resetOnOrientation: false,
preventZoom: false,
inline: false,
startExample: true,
appendTo: document.body,
toolbar: {
title: null,
url: null,
reset: true,
source: false,
inspector: false,
tools: false,
fullscreen: true,
exampleSelect: false
},
tools: {
inspector: null,
gui: null
},
dom: {}
}, options || {});
if (demo.examples.length > 1 && options.toolbar.exampleSelect !== false) {
demo.toolbar.exampleSelect = true;
}
if (Demo._isIOS) {
demo.toolbar.fullscreen = false;
}
if (!Gui) {
demo.toolbar.tools = false;
demo.tools.gui = false;
}
if (!Inspector) {
demo.toolbar.inspector = false;
demo.tools.inspector = false;
}
demo.dom = Demo._createDom(demo);
Demo._bindDom(demo);
if (demo.inline) {
demo.dom.root.classList.add('matter-demo-inline');
}
if (demo.appendTo) {
demo.appendTo.appendChild(demo.dom.root);
}
if (demo.startExample) {
Demo.start(demo, demo.startExample);
}
return demo;
};
/**
* Starts a new demo instance by running the first or given example.
* See example for options and usage.
* @function Demo.start
* @param {demo} demo
* @param {string} [initalExampleId] example to start (defaults to first)
*/
Demo.start = function (demo, initalExampleId) {
initalExampleId = typeof initalExampleId === 'string' ? initalExampleId : demo.examples[0].id;
if (window.location.hash.length > 0) {
initalExampleId = window.location.hash.slice(1);
}
Demo.setExampleById(demo, initalExampleId);
};
/**
* Stops the currently running example in the demo.
* This requires that the `example.init` function returned
* an object specifiying a `stop` function.
* @function Demo.stop
* @param {demo} demo
*/
Demo.stop = function (demo) {
if (demo.example && demo.example.instance) {
demo.example.instance.stop();
}
};
/**
* Stops and restarts the currently running example.
* @function Demo.reset
* @param {demo} demo
*/
Demo.reset = function (demo) {
Common._nextId = 0;
Common._seed = 0;
Demo.setExample(demo, demo.example);
};
/**
* Starts the given example by its id.
* Any running example will be stopped.
* @function Demo.setExampleById
* @param {demo} demo
* @param {string} exampleId
*/
Demo.setExampleById = function (demo, exampleId) {
var example = demo.examples.filter(function (example) {
return example.id === exampleId;
})[0];
Demo.setExample(demo, example);
};
/**
* Starts the given example.
* Any running example will be stopped.
* @function Demo.setExample
* @param {demo} demo
* @param {example} example
*/
Demo.setExample = function (demo, example) {
if (example) {
var instance = demo.example.instance;
if (instance) {
instance.stop();
if (instance.canvas) {
instance.canvas.parentElement.removeChild(instance.canvas);
}
}
window.location.hash = example.id;
demo.example.instance = null;
demo.example = example;
demo.example.instance = instance = example.init(demo);
if (!instance.canvas && instance.render) {
instance.canvas = instance.render.canvas;
}
if (instance.canvas) {
demo.dom.header.style.maxWidth = instance.canvas.width + 'px';
demo.dom.root.appendChild(instance.canvas);
}
demo.dom.exampleSelect.value = example.id;
demo.dom.buttonSource.href = example.sourceLink || demo.url || '#';
setTimeout(function () {
if (demo.tools.inspector) {
Demo.setInspector(demo, true);
}
if (demo.tools.gui) {
Demo.setGui(demo, true);
}
}, 500);
} else {
Demo.setExample(demo, demo.examples[0]);
}
};
/**
* Enables or disables the inspector tool.
* If `enabled` a new `Inspector` instance will be created and the old one destroyed.
* @function Demo.setInspector
* @param {demo} demo
* @param {bool} enabled
*/
Demo.setInspector = function (demo, enabled) {
if (!enabled) {
Demo._destroyTools(demo, true, false);
demo.dom.root.classList.toggle('matter-inspect-active', false);
return;
}
var instance = demo.example.instance;
Demo._destroyTools(demo, true, false);
demo.dom.root.classList.toggle('matter-inspect-active', true);
demo.tools.inspector = Inspector.create(instance.engine, instance.render);
};
/**
* Enables or disables the Gui tool.
* If `enabled` a new `Gui` instance will be created and the old one destroyed.
* @function Demo.setGui
* @param {demo} demo
* @param {bool} enabled
*/
Demo.setGui = function (demo, enabled) {
if (!enabled) {
Demo._destroyTools(demo, false, true);
demo.dom.root.classList.toggle('matter-gui-active', false);
return;
}
var instance = demo.example.instance;
Demo._destroyTools(demo, false, true);
demo.dom.root.classList.toggle('matter-gui-active', true);
demo.tools.gui = Gui.create(instance.engine, instance.runner, instance.render);
};
Demo._destroyTools = function (demo, destroyInspector, destroyGui) {
var inspector = demo.tools.inspector,
gui = demo.tools.gui;
if (destroyInspector && inspector && inspector !== true) {
Inspector.destroy(inspector);
demo.tools.inspector = null;
}
if (destroyGui && gui && gui !== true) {
Gui.destroy(gui);
demo.tools.gui = null;
}
};
Demo._toggleFullscreen = function (demo) {
var fullscreenElement = document.fullscreenElement || document.mozFullScreenElement || document.webkitFullscreenElement;
if (!fullscreenElement) {
fullscreenElement = demo.dom.root;
if (fullscreenElement.requestFullscreen) {
fullscreenElement.requestFullscreen();
} else if (fullscreenElement.mozRequestFullScreen) {
fullscreenElement.mozRequestFullScreen();
} else if (fullscreenElement.webkitRequestFullscreen) {
fullscreenElement.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT);
}
} else {
if (document.exitFullscreen) {
document.exitFullscreen();
} else if (document.mozCancelFullScreen) {
document.mozCancelFullScreen();
} else if (document.webkitExitFullscreen) {
document.webkitExitFullscreen();
}
}
};
Demo._bindDom = function (demo) {
var dom = demo.dom;
window.addEventListener('orientationchange', function () {
setTimeout(function () {
if (demo.resetOnOrientation) {
Demo.reset(demo);
}
}, 300);
});
if (demo.preventZoom) {
document.body.addEventListener('gesturestart', function (event) {
event.preventDefault();
});
var allowTap = true,
tapTimeout;
document.body.addEventListener('touchstart', function (event) {
if (!allowTap) {
event.preventDefault();
}
allowTap = false;
clearTimeout(tapTimeout);
tapTimeout = setTimeout(function () {
allowTap = true;
}, 500);
});
}
if (dom.exampleSelect) {
dom.exampleSelect.addEventListener('change', function () {
var exampleId = this.options[this.selectedIndex].value;
Demo.setExampleById(demo, exampleId);
});
}
if (dom.buttonReset) {
dom.buttonReset.addEventListener('click', function () {
Demo.reset(demo);
});
}
if (dom.buttonInspect) {
dom.buttonInspect.addEventListener('click', function () {
var showInspector = !demo.tools.inspector;
Demo.setInspector(demo, showInspector);
});
}
if (dom.buttonTools) {
dom.buttonTools.addEventListener('click', function () {
var showGui = !demo.tools.gui;
Demo.setGui(demo, showGui);
});
}
if (dom.buttonFullscreen) {
dom.buttonFullscreen.addEventListener('click', function () {
Demo._toggleFullscreen(demo);
});
var fullscreenChange = function fullscreenChange() {
var isFullscreen = document.fullscreen || document.webkitIsFullScreen || document.mozFullScreen;
document.body.classList.toggle('matter-is-fullscreen', isFullscreen);
setTimeout(function () {
Demo.setExample(demo, demo.example);
}, 500);
};
document.addEventListener('webkitfullscreenchange', fullscreenChange);
document.addEventListener('mozfullscreenchange', fullscreenChange);
document.addEventListener('fullscreenchange', fullscreenChange);
}
};
Demo._createDom = function (options) {
var styles = __webpack_require__(4);
ToolsCommon.injectStyles(styles, 'matter-demo-style');
var root = document.createElement('div');
var exampleOptions = options.examples.map(function (example) {
return '<option value="' + example.id + '">' + example.name + '</option>';
}).join(' ');
var preventZoomClass = options.preventZoom && Demo._isIOS ? 'prevent-zoom-ios' : '';
root.innerHTML = '\n <div class="matter-demo ' + options.toolbar.title + ' ' + preventZoomClass + '">\n <div class="matter-header-outer">\n <header class="matter-header">\n <div class="matter-header-inner">\n <h1 class="matter-demo-title">\n <a href="' + options.toolbar.url + '" target="_blank">\n ' + options.toolbar.title + '\n <svg fill="#000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">\n <path d="M0 0h24v24H0z" fill="none"/>\n <path d="M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5z"/>\n </svg>\n </a>\n </h1>\n <div class="matter-toolbar">\n <div class="matter-select-wrapper">\n <select class="matter-example-select matter-select">\n ' + exampleOptions + '\n </select>\n <svg fill="#000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">\n <path d="M7 10l5 5 5-5z"/>\n <path d="M0 0h24v24H0z" fill="none"/>\n </svg>\n </div>\n <button class="matter-btn matter-btn-reset" title="Reset">\n <svg fill="#000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">\n <path d="M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"/>\n <path d="M0 0h24v24H0z" fill="none"/>\n </svg>\n </button>\n <a href="#" class="matter-btn matter-btn-source" title="Source" target="_blank">{ }</a>\n <button class="matter-btn matter-btn-tools" title="Tools">\n <svg fill="#000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">\n <path d="M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20.71 7.04c.39-.39.39-1.02 0-1.41l-2.34-2.34c-.39-.39-1.02-.39-1.41 0l-1.83 1.83 3.75 3.75 1.83-1.83z"/>\n <path d="M0 0h24v24H0z" fill="none"/>\n </svg>\n </button>\n <button class="matter-btn matter-btn-inspect" title="Inspect">\n <svg fill="#000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">\n <path d="M0 0h24v24H0z" fill="none"/>\n <path d="M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69c1.11-.86 2.44-1.44 3.9-1.62zm7.32.19C16.84 3.05 15.01 2.25 13 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1c.86 1.11 1.44 2.44 1.62 3.9zM5.69 7.1L4.26 5.68C3.05 7.16 2.25 8.99 2.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43c-.86-1.1-1.44-2.43-1.62-3.89zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9l1.43 1.43c1.21-1.48 2.01-3.32 2.21-5.32h-2.02c-.18 1.45-.76 2.78-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19C7.16 20.95 9 21.75 11 21.95v-2.02c-1.46-.18-2.79-.76-3.9-1.62l-1.42 1.43z"/>\n </svg>\n </button>\n <button class="matter-btn matter-btn-fullscreen" title="Fullscreen">\n <svg fill="#000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">\n <path d="M0 0h24v24H0z" fill="none"/>\n <path d="M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"/>\n </svg>\n </button>\n </div>\n <a class="matter-link" href="' + Demo._matterLink + '" title="matter.js" target="_blank">\n <svg class="matter-logo" height="100" viewBox="0 952.04859 330 100" width="268" xmlns="http://www.w3.org/2000/svg">\n <path id="m-triangle" style="fill:#76f09b;" d="m 115.83215,1052.3622 -57.916072,0 -57.916078053812107,0 L 28.958038,1002.2054 57.916077,952.04859 86.874114,1002.2054 Z" />\n <path id="m-square" style="fill:#f55f5f" d="m 168.03172,952.36218 0,100.00002 100,0 0,-100.00002 -100,0 z" />\n <circle id="m-circle" style="fill:#f5b862" r="12.947398" cy="1039.4148" cx="140.28374" />\n </svg>\n </a>\n </div>\n </header>\n </div>\n </div>\n ';
var dom = {
root: root.firstElementChild,
title: root.querySelector('.matter-demo-title'),
header: root.querySelector('.matter-header'),
exampleSelect: root.querySelector('.matter-example-select'),
buttonReset: root.querySelector('.matter-btn-reset'),
buttonSource: root.querySelector('.matter-btn-source'),
buttonTools: root.querySelector('.matter-btn-tools'),
buttonInspect: root.querySelector('.matter-btn-inspect'),
buttonFullscreen: root.querySelector('.matter-btn-fullscreen')
};
if (!options.toolbar.title) {
ToolsCommon.domRemove(dom.title);
}
if (!options.toolbar.exampleSelect) {
ToolsCommon.domRemove(dom.exampleSelect.parentElement);
}
if (!options.toolbar.reset) {
ToolsCommon.domRemove(dom.buttonReset);
}
if (!options.toolbar.source) {
ToolsCommon.domRemove(dom.buttonSource);
}
if (!options.toolbar.inspector) {
ToolsCommon.domRemove(dom.buttonInspect);
}
if (!options.toolbar.tools) {
ToolsCommon.domRemove(dom.buttonTools);
}
if (!options.toolbar.fullscreen) {
ToolsCommon.domRemove(dom.buttonFullscreen);
}
return dom;
};
/*** EXPORTS FROM exports-loader ***/
/***/ },
/* 1 */
/***/ function(module, exports) {
module.exports = __WEBPACK_EXTERNAL_MODULE_1__;
/***/ },
/* 2 */
/***/ function(module, exports) {
module.exports = __WEBPACK_EXTERNAL_MODULE_2__;
/***/ },
/* 3 */
/***/ function(module, exports) {
"use strict";
/**
* @class Common
*/
var Common = module.exports = {};
Common.injectStyles = function (styles, id) {
if (document.getElementById(id)) {
return;
}
var root = document.createElement('div');
root.innerHTML = '<style id="' + id + '" type="text/css">' + styles + '</style>';
var lastStyle = document.head.querySelector('style:last-of-type');
if (lastStyle) {
Common.domInsertBefore(root.firstElementChild, lastStyle);
} else {
document.head.appendChild(root.firstElementChild);
}
};
Common.injectScript = function (url, id, callback) {
if (document.getElementById(id)) {
return;
}
var script = document.createElement('script');
script.id = id;
script.src = url;
script.onload = callback;
document.body.appendChild(script);
};
Common.domRemove = function (element) {
return element.parentElement.removeChild(element);
};
Common.domInsertBefore = function (element, before) {
return before.parentNode.insertBefore(element, before.previousElementSibling);
};
/*** EXPORTS FROM exports-loader ***/
/***/ },
/* 4 */
/***/ function(module, exports) {
module.exports = "/*\n*\tMatterTools.Demo\n*/\n\n.matter-demo {\n font-family: Helvetica, Arial, sans-serif;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n background: #14151f;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n -webkit-box-orient: vertical;\n -webkit-box-direction: normal;\n -ms-flex-direction: column;\n flex-direction: column;\n height: 100vh;\n}\n\n.matter-demo canvas {\n border-radius: 8px;\n max-width: 100%;\n max-height: 100%;\n}\n\n.matter-demo.matter-demo-inline canvas {\n max-height: calc(100% - 50px);\n}\n\n@media screen and (min-width: 900px) and (min-height: 600px) {\n .matter-demo.matter-demo-inline canvas {\n max-height: calc(100% - 100px);\n }\n}\n\n.matter-is-fullscreen .matter-demo {\n width: 100%;\n}\n\n.matter-is-fullscreen .dg.ac,\n.matter-is-fullscreen .ins-container {\n display: none;\n}\n\n.matter-header-outer {\n position: fixed;\n z-index: 100;\n top: 0;\n left: 0;\n right: 0;\n background: rgba(0, 0, 0, 0.2);\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n -webkit-transition: background 400ms ease;\n -o-transition: background 400ms ease;\n transition: background 400ms ease;\n}\n\n.matter-header-outer:hover {\n background: rgba(0, 0, 0, 0.7);\n}\n\n.matter-demo-inline .matter-header-outer {\n position: static;\n background: transparent;\n z-index: 0;\n width: 100%;\n}\n\n.matter-header {\n width: 100%;\n padding: 7px 20px 8px 20px;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n}\n\n.matter-demo-inline .matter-header {\n padding: 10px;\n}\n\nbody .ins-container,\nbody .dg .dg.main,\nbody .dg .dg.main.a {\n padding-top: 52px;\n}\n\n@media screen and (min-width: 500px) {\n .matter-demo-inline .matter-header {\n padding: 10px 30px 16px 30px;\n }\n}\n\n@media screen and (min-width: 900px) and (min-height: 600px) {\n .matter-demo-inline .matter-header {\n padding: 10px 30px 36px 30px;\n }\n}\n\n.matter-header-inner {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n max-width: 960px;\n width: 100%;\n}\n\n.matter-header h1 {\n display: none;\n margin: 0;\n width: 18px;\n overflow: hidden;\n}\n\n.matter-header h1 a {\n color: #f2f2f5;\n font-size: 15px;\n font-weight: 400;\n font-family: Helvetica, Arial, sans-serif;\n display: block;\n text-decoration: none;\n padding: 8px 0 3px 0;\n border-bottom: 2px solid transparent;\n white-space: nowrap;\n float: right;\n}\n\n@media screen and (min-width: 300px) {\n .matter-header h1 {\n display: inline;\n }\n}\n\n@media screen and (min-width: 600px) {\n .matter-header h1 {\n width: auto;\n overflow: visible;\n }\n}\n\n.btn-home {\n display: none;\n}\n\n.matter-demo-title svg {\n fill: #fff;\n width: 16px;\n height: 16px;\n margin: 0px 0 -2px 4px;\n}\n\n.matter-header h1 a:hover {\n border-bottom: 2px solid #F5B862;\n}\n\n.matter-link {\n font-family: Helvetica, Arial, sans-serif;\n text-decoration: none;\n line-height: 13px;\n margin: 0 -10px 0 0;\n}\n\n.matter-logo {\n height: 33px;\n width: 52px;\n}\n\n.matter-logo #m-triangle {\n -webkit-transform-origin: 14px 856px;\n -ms-transform-origin: 14px 856px;\n transform-origin: 14px 856px;\n -webkit-transition: -webkit-transform 400ms ease;\n transition: -webkit-transform 400ms ease;\n -o-transition: transform 400ms ease;\n transition: transform 400ms ease;\n transition: transform 400ms ease, -webkit-transform 400ms ease;\n}\n\n.matter-logo:hover #m-triangle {\n -webkit-transform: rotate(-30deg) translate(-98px, -25px);\n -ms-transform: rotate(-30deg) translate(-98px, -25px);\n transform: rotate(-30deg) translate(-98px, -25px);\n}\n\n.matter-logo #m-circle {\n -webkit-transition: -webkit-transform 200ms ease;\n transition: -webkit-transform 200ms ease;\n -o-transition: transform 200ms ease;\n transition: transform 200ms ease;\n transition: transform 200ms ease, -webkit-transform 200ms ease;\n -webkit-transition-delay: 300ms;\n -o-transition-delay: 300ms;\n transition-delay: 300ms;\n}\n\n.matter-logo #m-square {\n -webkit-transition: -webkit-transform 150ms ease;\n transition: -webkit-transform 150ms ease;\n -o-transition: transform 150ms ease;\n transition: transform 150ms ease;\n transition: transform 150ms ease, -webkit-transform 150ms ease;\n -webkit-transition-delay: 400ms;\n -o-transition-delay: 400ms;\n transition-delay: 400ms;\n}\n\n.matter-logo:hover #m-circle {\n -webkit-transform: translate(18px, -33px);\n -ms-transform: translate(18px, -33px);\n transform: translate(18px, -33px);\n}\n\n.matter-logo:hover #m-square {\n -webkit-transform: translate(47px, -2px);\n -ms-transform: translate(47px, -2px);\n transform: translate(47px, -2px);\n}\n\n.matter-toolbar {\n -webkit-box-flex: 1;\n -ms-flex-positive: 1;\n flex-grow: 1;\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n -webkit-box-pack: center;\n -ms-flex-pack: center;\n justify-content: center;\n}\n\n.matter-select {\n background: transparent;\n color: #fff;\n font-size: 15px;\n height: 30px;\n width: 100%;\n outline: none;\n padding: 0 7px;\n margin: 0;\n border: 0;\n border-radius: 0;\n appearance: none;\n -moz-appearance: none;\n -webkit-appearance: none;\n}\n\n.prevent-zoom-ios .matter-select {\n font-size: 16px;\n}\n\n.matter-select-wrapper {\n width: 20%;\n min-width: 100px;\n max-width: 200px;\n position: relative;\n display: inline-block;\n margin: 1px 6% 0 0;\n}\n\n.matter-select-wrapper:hover:after svg {\n fill: #fff;\n}\n\n.matter-select-wrapper svg {\n display: block;\n pointer-events: none;\n fill: #cecece;\n width: 22px;\n height: 22px;\n position: absolute;\n top: 4px;\n right: 5px;\n}\n\n.prevent-zoom-ios .matter-select-wrapper:after {\n top: 4px;\n}\n\n.matter-btn {\n font-family: Helvetica, Arial, sans-serif;\n border: 0;\n background: rgba(0,0,0,0.1);\n padding: 2px 0 0 0;\n width: 40px;\n height: 33px;\n border-radius: 2px;\n display: inline-block;\n font-size: 16px;\n line-height: 1;\n color: #c2cad4;\n text-decoration: none;\n text-align: center;\n}\n\n.matter-btn svg {\n fill: #fff;\n width: 16px;\n height: 16px;\n margin: 2px 0 0 0;\n}\n\n.matter-demo-inline .matter-btn {\n background: #0f0f13;\n}\n\n.matter-btn:focus {\n outline: 0;\n}\n\n.matter-btn:hover {\n -webkit-transform: translate(0px, -1px);\n -ms-transform: translate(0px, -1px);\n transform: translate(0px, -1px);\n}\n\n.matter-btn:active {\n -webkit-transform: translate(0px, 1px);\n -ms-transform: translate(0px, 1px);\n transform: translate(0px, 1px);\n}\n\n.matter-btn:hover {\n background: #212a3a;\n}\n\n.matter-btn-reset:active svg {\n fill: #76F09B;\n}\n\n.matter-btn-tools {\n display: none;\n font-size: 15px;\n padding-right: 3px;\n}\n\n.matter-gui-active .matter-btn-tools svg {\n fill: #F55F5F;\n}\n\n.matter-btn-inspect {\n display: none;\n}\n\n.matter-inspect-active .matter-btn-inspect svg {\n fill: #fff036;\n}\n\n.matter-btn-source {\n display: none;\n font-size: 12px;\n text-align: center;\n line-height: 31px;\n}\n\n.matter-btn-source:active {\n color: #F5B862;\n}\n\n.matter-btn-fullscreen {\n font-size: 18px;\n}\n\n.matter-btn-source:active svg {\n fill: #F5B862;\n}\n\n.matter-is-fullscreen .matter-btn-tools,\n.matter-is-fullscreen .matter-btn-inspect {\n display: none;\n}\n\n.matter-is-fullscreen .matter-btn-fullscreen svg {\n fill: #76F09B;\n}\n\n.ins-container,\nbody .dg {\n display: none;\n}\n\n@media screen and (min-width: 500px) {\n .ins-container,\n body .dg,\n .matter-btn-tools,\n .matter-btn-inspect,\n .matter-btn-source {\n display: block;\n }\n}"
/***/ }
/******/ ])
});
;