
@import "fonts/stylesheet.css";

* {
    margin:0;
    padding:0;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
body {
    position: fixed;
    height: 100%;
    overflow: hidden;
    font-family: Jura;
}

button {
    border: none;
    background: none;
    color: #EEE;
    padding: 6px;
    margin: 6px;
}
button:hover {
    background: rgba(60,10,10, .7);
}


#webGL {

}
h1,h2,h3,h4,h5 {
    font-family: Michroma;
    color: #EEE;
}
#topbar {
    position: absolute;
    height: 40px;
    line-height: 40px;
    top: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0,0,0, .7);
    color: #DDD;
    z-index: 10;
    text-align: center;
}
#bottom {
    position: absolute;
    height: 40px;
    line-height: 40px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: rgba(0,0,0, .7);
    color: #DDD;
    z-index: 10;
    text-align: center;
}
#part-window {
    position: absolute;
    top: 40px;
    left: 0px;
    bottom: 40px;
    width: 304px;
    background: rgba(0,0,0, .7);
}
.part-button {
    display: inline-block;
    width: 60px;
    height: 60px;
}

/* UI */

#ui-root {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  overflow: hidden;
}

#ui-root canvas {
  position: absolute;

  overflow: hidden;

  transition: opacity 0.2s ease;
}

html:hover {
  cursor: default;
}

html.hover:hover {
  cursor: pointer;
}

html.drag-horizontal:hover {
  cursor: ew-resize;
}

html.drag-vertical:hover {
  cursor: ns-resize;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}