@import url("https://fonts.googleapis.com/css?family=Roboto:400,700");
@import url("https://fonts.googleapis.com/css?family=Roboto+Mono:400,700");
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", serif, Arial;
  font-size: 16px;
  color: white;
  background: #4A4A4A;
  -webkit-overflow-scrolling: touch; }

*, *:before, *:after {
  box-sizing: inherit; }

.space {
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: center center; }

.topmenu {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: black;
  color: white; }

.codeblock {
  position: absolute;
  top: 50px;
  left: 20px; }

.codeblock__top {
  height: 10px;
  width: 100%;
  background: rgba(0, 0, 0, 0.8); }

.codeblock__pre {
  margin: 0;
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  width: auto;
  height: auto;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #333; }

.disable-select {
  user-select: none; }
