index.css 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. html, body {
  2. width: 100%;
  3. height: 100%;
  4. padding: 0;
  5. margin: 0;
  6. overflow: hidden;
  7. font-family: "Segoe WP", "Segoe UI", "Verdana", "Arial";
  8. }
  9. #DebugLayerLogs {
  10. height: 100px !important;
  11. }
  12. #DebugLayerLogs > div:first-child {
  13. background-color: #3B789A !important;
  14. }
  15. #DebugLayerStats {
  16. margin-top: 2px !important;
  17. }
  18. #DebugLayerStats div:nth-child(2) {
  19. max-height: 180px !important;
  20. }
  21. #DebugLayerStats > div:first-child {
  22. background-color: #3B789A !important;
  23. }
  24. #DebugLayerOptions {
  25. overflow-y: hidden !important;
  26. }
  27. #DebugLayerOptions > div:first-child {
  28. background-color: #3B789A !important;
  29. }
  30. #DebugLayerTree > div:first-child {
  31. background-color: #3B789A !important;
  32. }
  33. a {
  34. color: white;
  35. }
  36. a:visited {
  37. color: white;
  38. }
  39. .hidden {
  40. display: none;
  41. }
  42. #renderCanvas {
  43. position: absolute;
  44. width: 100%;
  45. height: 100%;
  46. top: 0;
  47. margin-bottom: 65px;
  48. touch-action: none;
  49. -ms-touch-action: none;
  50. }
  51. .help {
  52. display: none;
  53. position: absolute;
  54. background-color: #3B789A;
  55. right: 0;
  56. bottom: 70px;
  57. color: white;
  58. padding-right: 10px;
  59. width: 360px;
  60. height: 30px;
  61. transition: all 0.5s ease;
  62. -webkit-transition: all 0.5s ease;
  63. transform: translateX(400px);
  64. -webkit-transform: translateX(400px);
  65. text-align: center;
  66. }
  67. .help.shown {
  68. transform: translateX(-100px);
  69. -webkit-transform: translateX(-100px);
  70. display: inline;
  71. }
  72. .help2 {
  73. display: none;
  74. position: absolute;
  75. background-color: #3B789A;
  76. right: 0;
  77. bottom: 70px;
  78. color: white;
  79. padding-right: 10px;
  80. width: 360px;
  81. height: 30px;
  82. transition: all 0.5s ease;
  83. -webkit-transition: all 0.5s ease;
  84. transform: translateX(400px);
  85. -webkit-transform: translateX(400px);
  86. text-align: center;
  87. }
  88. .help2.shown {
  89. transform: translateX(0px);
  90. -webkit-transform: translateX(0px);
  91. display: inline;
  92. }
  93. #helpArrow {
  94. position: absolute;
  95. right: -65px;
  96. bottom: 10px;
  97. }
  98. #fps {
  99. position: absolute;
  100. font-size: 30px;
  101. color: white;
  102. bottom: 15px;
  103. right: 85px;
  104. width: 85px;
  105. }
  106. .footer {
  107. position: absolute;
  108. width: 100%;
  109. height: 60px;
  110. bottom: 0;
  111. background-color: #3B789A;
  112. padding-top: 5px;
  113. padding-left: 15px;
  114. }
  115. .perffooter {
  116. position: absolute;
  117. width: 100%;
  118. height: 60px;
  119. bottom: 0px;
  120. background-color: #3B789A;
  121. padding-top: 5px;
  122. padding-left: 15px;
  123. transition: all 0.5s ease;
  124. -webkit-transition: all 0.5s ease;
  125. }
  126. .perffooter.shown {
  127. transform: translateY(-65px);
  128. -webkit-transform: translateY(-65px);
  129. }
  130. .footerRight {
  131. display: inline;
  132. position: absolute;
  133. bottom: 0;
  134. right: 10px;
  135. }
  136. .footerLeft {
  137. position: absolute;
  138. bottom: 20px;
  139. left: 15px;
  140. color: white;
  141. }
  142. .custom-upload {
  143. position: relative;
  144. background:url(./Assets/BtnDragdrop.png) center right no-repeat;
  145. height: 56px;
  146. width: 56px;
  147. margin: 10px 20px 5px 5px;
  148. }
  149. .custom-upload input[type=file]
  150. {
  151. outline:none;
  152. position: relative;
  153. text-align: right;
  154. -moz-opacity:0 ;
  155. opacity: 0;
  156. z-index: 2;
  157. width:100%;
  158. height:100%;
  159. filter:alpha(opacity=0);
  160. }
  161. #logo {
  162. width: 100%;
  163. height: 100%;
  164. background: url('./Assets/LogoSandbox.png') no-repeat 0 0;
  165. background-position: center;
  166. }
  167. #btnFullscreen {
  168. margin-top: 10px;
  169. margin-right: 25px;
  170. }
  171. #btnPerf {
  172. margin-top: 10px;
  173. margin-right: 15px;
  174. }
  175. ul {
  176. padding:0;
  177. margin:0;
  178. list-style-type:none;
  179. }
  180. li {
  181. float:left;
  182. }
  183. #btnDownArrow {
  184. position: absolute;
  185. bottom: 35px;
  186. right: 30px;
  187. }
  188. #miscCounters {
  189. position: relative;
  190. top: 18px;
  191. height: 60px;
  192. -webkit-column-width: 150px;
  193. -moz-column-width: 150px;
  194. -ms-column-width: 150px;
  195. -o-column-width: 150px;
  196. column-width: 150px;
  197. font-size: 14px;
  198. }
  199. #loadingText {
  200. width: 100%;
  201. height: 60px;
  202. position: absolute;
  203. top: 50%;
  204. left: 0;
  205. margin-top: -30px;
  206. color: white;
  207. text-align: center;
  208. padding-top: 10px;
  209. font-size: 30px;
  210. transition: transform 0.25s ease-in-out;
  211. -webkit-transition: -webkit-transform 0.25s ease-in-out;
  212. z-index: 3;
  213. cursor: default;
  214. background-color: #3B789A;
  215. }
  216. .loadingText {
  217. transform: translateX(120%);
  218. -webkit-transform: translateX(120%);
  219. }
  220. #btnFullscreen, #btnPerf, #btnFiles {
  221. -webkit-transition: -webkit-transform 0.15s ease-in-out;
  222. transition: transform 0.15s ease-in-out;
  223. }
  224. #btnFullscreen:hover, #btnPerf:hover, #btnFiles:hover {
  225. -webkit-transform: scale(0.9);
  226. transform: scale(0.9);
  227. }
  228. #errorZone {
  229. display:none;
  230. position: absolute;
  231. width: 50%;
  232. left: 25%;
  233. bottom: 80px;
  234. background-color: #C73228;
  235. padding:20px;
  236. border-radius: 5px;
  237. color:white;
  238. font-family: 'Inconsolata';
  239. }
  240. #errorZone button {
  241. position: absolute;
  242. top: 3px;
  243. right: 10px;
  244. padding: 0;
  245. cursor: pointer;
  246. background: transparent;
  247. border: 0;
  248. -webkit-appearance: none;
  249. color: #000;
  250. text-shadow: 0 1px 0 #fff;
  251. opacity: .4;
  252. font-size: 1.8em;
  253. }