/ vrm-ui / style.css
style.css
  1  * {
  2    margin: 0;
  3    padding: 0;
  4    border: 0;
  5    overflow: hidden;
  6  }
  7  
  8  body {
  9    background-color:black;
 10  }
 11  
 12  canvas {
 13    position:absolute;
 14    width:100vw !important;
 15    height:100vh !important;
 16    /*cursor: none;*/ 
 17    z-index:1;
 18  }
 19  
 20  .backplate{
 21    position:absolute;
 22    font-family: Sans-Serif;
 23    color:white;
 24    margin:10px;
 25    font-size:14px;
 26    opacity:0.75;
 27    font-family: Sans-Serif;
 28    background-color:#2F5164;
 29    padding:10px;
 30    border-radius:5px;
 31  }
 32  
 33  .credits{
 34    position:absolute;
 35    right:0px;
 36    font-family: Sans-Serif;
 37    color:white;
 38    margin:10px;
 39    font-size:14px;
 40  text-align:right;  
 41  opacity:0.75;
 42  font-family: Sans-Serif;
 43  background-color:#2F5164;
 44  padding:10px;
 45  border-radius:5px;
 46  z-index:1;
 47  }
 48  
 49  .infobar{
 50    position:absolute;
 51    bottom:0px;
 52    left:0px;
 53    font-family: Sans-Serif;
 54    background-color:#2F5164;
 55    margin:10px;
 56    font-size:14px;
 57    z-index:998;
 58    color:white;
 59    padding:5px;
 60    border-radius:5px;
 61    opacity:0.75;
 62  }
 63  
 64  .interface{
 65    position:absolute;
 66    bottom:0px;
 67    right:0px;
 68    font-family: Sans-Serif;
 69    background-color:#2F5164;
 70    margin:10px;
 71    font-size:13px;
 72    z-index:999;
 73    color:white;
 74    padding:10px;
 75    border-radius:5px;
 76    width:200px;
 77    opacity:0.75;  
 78  }
 79  
 80  .interface .sliders{
 81  }
 82  
 83  
 84  .interface .fileinput {
 85    margin-top:10px;
 86  }
 87  
 88  
 89  .interface .slider{
 90    appearance: none;
 91    width: 100%; 
 92    height: 13px; 
 93    background: #000; 
 94    opacity:1;
 95    margin-top:3px;
 96    margin-bottom:3px;
 97    overflow:hidden;
 98    border-radius:30px;
 99  }
100  
101  .slider::-webkit-slider-thumb {
102    -webkit-appearance: none;
103    appearance: none;
104    background: #fff;
105    width: 18px;
106    height: 18px;
107    border-radius:30px;
108  }
109  
110  
111  .interface .file{
112    background-color:#2F5164;
113  }
114  
115  
116  .interface .closebtn{
117    color:red;
118  text-align:right;
119  margin-top: -5px;
120  margin-bottom: -15px;
121    font-size:14px;
122  }
123  
124  .interface input[type=number]::-webkit-inner-spin-button, 
125  .interface input[type=number]::-webkit-outer-spin-button {  
126     opacity: 1;
127  }
128  
129  .highlight{
130    background-color : black;
131    border-radius : 5px;
132    padding: 1px;
133    padding-left:5px;
134    padding-right:5px;
135    color: white;
136    font-weight:bold;
137    font-size:12px;
138    line-height:15px;
139  }
140