index.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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. a {
  10. color: white;
  11. }
  12. a:visited {
  13. color: white;
  14. }
  15. .hidden {
  16. display: none;
  17. }
  18. #renderCanvas {
  19. position: absolute;
  20. width: 100%;
  21. height: 100%;
  22. top: 0;
  23. margin-bottom: 70px;
  24. touch-action: none;
  25. -ms-touch-action: none;
  26. }
  27. .help {
  28. position: absolute;
  29. background-color: #988DB5;
  30. right: 0;
  31. bottom: 70px;
  32. color: white;
  33. padding-right: 10px;
  34. width: 360px;
  35. height: 30px;
  36. transition: all 0.5s ease;
  37. -webkit-transition: all 0.5s ease;
  38. transform: translateX(400px);
  39. -webkit-transform: translateX(400px);
  40. text-align: center;
  41. }
  42. .help.shown {
  43. transform: translateX(-100px);
  44. -webkit-transform: translateX(-100px);
  45. }
  46. .help2 {
  47. position: absolute;
  48. background-color: #988DB5;
  49. right: 0;
  50. bottom: 70px;
  51. color: white;
  52. padding-right: 10px;
  53. width: 360px;
  54. height: 30px;
  55. transition: all 0.5s ease;
  56. -webkit-transition: all 0.5s ease;
  57. transform: translateX(400px);
  58. -webkit-transform: translateX(400px);
  59. text-align: center;
  60. }
  61. .help2.shown {
  62. transform: translateX(0px);
  63. -webkit-transform: translateX(0px);
  64. }
  65. #helpArrow {
  66. position: absolute;
  67. right: -65px;
  68. bottom: 10px;
  69. }
  70. #fps {
  71. position: absolute;
  72. font-size: 30px;
  73. color: white;
  74. bottom: 15px;
  75. right: 85px;
  76. width: 85px;
  77. }
  78. .footer {
  79. position: absolute;
  80. width: 100%;
  81. height: 60px;
  82. bottom: 0;
  83. background-color: #59448F;
  84. padding-top: 5px;
  85. padding-left: 15px;
  86. }
  87. .perffooter {
  88. position: absolute;
  89. width: 100%;
  90. height: 60px;
  91. bottom: 0px;
  92. background-color: #988DB5;
  93. padding-top: 5px;
  94. padding-left: 15px;
  95. transition: all 0.5s ease;
  96. -webkit-transition: all 0.5s ease;
  97. }
  98. .perffooter.shown {
  99. transform: translateY(-65px);
  100. -webkit-transform: translateY(-65px);
  101. }
  102. .footerRight {
  103. display: inline;
  104. position: absolute;
  105. bottom: 0;
  106. right: 10px;
  107. }
  108. .footerLeft {
  109. position: absolute;
  110. bottom: 20px;
  111. left: 15px;
  112. color: white;
  113. }
  114. .custom-upload {
  115. position: relative;
  116. background:url(./Assets/BtnDragdrop.png) center right no-repeat;
  117. height: 56px;
  118. width: 56px;
  119. margin: 10px 20px 5px 5px;
  120. }
  121. .custom-upload input[type=file]
  122. {
  123. outline:none;
  124. position: relative;
  125. text-align: right;
  126. -moz-opacity:0 ;
  127. filter:alpha(opacity: 0);
  128. opacity: 0;
  129. z-index: 2;
  130. width:100%;
  131. height:100%;
  132. }
  133. #logo {
  134. width: 100%;
  135. height: 100%;
  136. background: url('./Assets/LogoSandbox.png') no-repeat 0 0;
  137. background-position: center;
  138. }
  139. #btnFullscreen {
  140. }
  141. #btnFullscreen {
  142. margin-top: 10px;
  143. margin-right: 25px;
  144. }
  145. #btnPerf {
  146. margin-top: 10px;
  147. margin-right: 15px;
  148. }
  149. ul {
  150. padding:0;
  151. margin:0;
  152. list-style-type:none;
  153. }
  154. li {
  155. float:left;
  156. }
  157. #btnDownArrow {
  158. position: absolute;
  159. bottom: 35px;
  160. right: 30px;
  161. }
  162. #miscCounters {
  163. position: relative;
  164. top: 18px;
  165. height: 60px;
  166. -webkit-column-width: 150px;
  167. -moz-column-width: 150px;
  168. -ms-column-width: 150px;
  169. -o-column-width: 150px;
  170. column-width: 150px;
  171. font-size: 14px;
  172. }
  173. #loadingText {
  174. width: 100%;
  175. height: 60px;
  176. position: absolute;
  177. top: 50%;
  178. left: 0;
  179. margin-top: -30px;
  180. color: white;
  181. text-align: center;
  182. padding-top: 10px;
  183. font-size: 30px;
  184. transition: transform 0.25s ease-in-out;
  185. -webkit-transition: -webkit-transform 0.25s ease-in-out;
  186. z-index: 3;
  187. cursor: default;
  188. background-color: #988DB5;
  189. }
  190. .loadingText {
  191. transform: translateX(120%);
  192. -webkit-transform: translateX(120%);
  193. }
  194. #btnFullscreen, #btnPerf, #btnFiles {
  195. -webkit-transition: -webkit-transform 0.15s ease-in-out;
  196. transition: transform 0.15s ease-in-out;
  197. }
  198. #btnFullscreen:hover, #btnPerf:hover, #btnFiles:hover {
  199. -webkit-transform: scale(0.9);
  200. transform: scale(0.9);
  201. }