/* src/less/mobile.less */
html {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial;
  background-color: #202;
  color: #ff0;
}
button {
  color: #fff;
}
input[type=range] {
  width: 130px;
  margin-right: 20px;
}
button {
  outline: none;
}
section.master {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  z-index: 20;
  background-color: #202;
}
section.loops {
  display: flex;
  flex-wrap: wrap;
  flex-flow: center;
  align-content: flex-top;
  flex-direction: row;
  width: 100%;
  padding-top: 120px;
}
section.loops .loader {
  display: block;
  width: 100%;
}
section.loops .loader div.bar {
  border: 2px solid #ff0;
  padding: 2px;
  margin: 10px auto;
  border-radius: 8px;
  max-width: 600px;
}
section.loops .loader div.bar div.fill {
  background-color: #ff0;
  display: block;
  height: 20px;
  width: 0;
  border-radius: 4px;
}
section.loops .loader span {
  display: block;
  font-size: 10px;
  font-family:
    sans-serif,
    Arial,
    Helvetica;
  text-align: center;
  color: #ff0;
}
section.loops .loop {
  display: flex;
  flex: 1 0 auto;
  min-width: 150px;
  min-height: 160px;
  background-color: #303;
  border-radius: 3px;
  overflow: hidden;
  box-sizing: border-box;
  margin: 1px;
  padding: 5px;
  border: 1px solid #404;
  position: relative;
}
section.loops .loop.playing {
  border: 1px solid #c0c;
}
section.loops .loop.playing .id {
  background-color: #c0c;
  color: #404;
}
section.loops .loop .id {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 2px;
  color: #ff0;
  background-color: #404;
  text-align: center;
  font-size: 10px;
  font-family: Helvetica;
}
section.loops .loop .id .playpause {
  display: inline-block;
  width: 50px;
  padding: 5px;
  text-align: center;
  border-radius: 3px;
  border: 1px solid #ff0;
  color: #ff0;
  font-weight: bold;
  background-color: transparent;
}
section.loops .loop .playpause button {
  margin: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 0;
  padding: 0 2px;
  font-size: 10px;
  color: inherit;
}
section.master .logo {
  position: absolute;
  top: 5px;
  width: 100%;
  text-align: center;
  font-size: 8px;
}
section.master .parameters-wrapper {
  position: absolute;
  width: 100%;
  bottom: 10px;
  margin: 0 auto;
}
section.master .parameters-wrapper .parameters {
  width: 250px;
  margin: 0 auto;
}
section.master .actions {
  position: absolute;
  top: 20px;
  width: 100%;
  text-align: center;
}
section.master .actions button {
  display: inline-block;
  width: 80px;
  font-size: 8px;
  border: 1px solid #808;
  padding: 2px;
  margin: 0 2px;
  border-radius: 3px;
  color: #c0c;
  font-weight: bold;
  background: transparent;
}
section.master .actions button.reset {
  border-color: #ff0;
  color: #ff0;
}
section.loops .loop .parameters-wrapper {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
}
section.loops .loop .parameters-wrapper .parameters {
  width: 150px;
  margin: 0 auto;
}
.parameters .parameter {
  float: left;
}
.parameter {
  position: relative;
  width: 48px;
  height: 60px;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #404;
  border-radius: 3px;
  margin: 1px;
}
.parameter canvas {
  position: absolute;
  left: 1px;
  top: 5px;
  width: 44px;
  height: 44px;
}
.parameter .parametername {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
  background-color: #404;
  color: #c7c;
  padding: 2px;
  text-align: center;
  font-size: 8px;
  font-family:
    sans-serif,
    Arial,
    Helvetica;
  z-index: 10;
}
.parameter .parametervalue {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  text-align: center;
  font-size: 8px;
  font-family:
    sans-serif,
    Arial,
    Helvetica;
  z-index: 10;
}
