index.css 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  1. body {
  2. background-color: #000;
  3. /* Prevent selection of HTML divs */
  4. user-select: none;
  5. -moz-user-select: -moz-none;
  6. -khtml-user-select: none;
  7. -webkit-user-select: none;
  8. margin: 0px;
  9. }
  10. /*
  11. h1, h2, h3, h4, h5, h6 {
  12. font-family: Verdana, Arial, Helvetica, sans-serif;
  13. }
  14. table {
  15. font-family: Verdana, Arial, Helvetica, sans-serif;
  16. }
  17. form {
  18. margin: 2em;
  19. }
  20. label {
  21. font-size: 18px;
  22. }
  23. */
  24. /*
  25. input {
  26. font-size: inherit;
  27. padding: 5px;
  28. }
  29. */
  30. .vwf-properties {
  31. background-color: #DCC;
  32. }
  33. .vwf-methods {
  34. background-color: #CDC;
  35. }
  36. .vwf-events {
  37. background-color: #CCD;
  38. }
  39. .vwf-root {
  40. background-color: #CCC;
  41. }
  42. .vwf-root .vwf-node:nth-child(odd) {
  43. background-color: #BCC;
  44. }
  45. .vwf-root .vwf-node:nth-child(even) {
  46. background-color: #CBC;
  47. }
  48. .vwf-orphanage {
  49. background-color: #CCC;
  50. }
  51. .vwf-orphanage .vwf-node:nth-child(odd) {
  52. background-color: #BCC;
  53. }
  54. .vwf-orphanage .vwf-node:nth-child(even) {
  55. background-color: #CBC;
  56. }
  57. .vwf-children {
  58. background-color: #CCC;
  59. }
  60. .vwf-children .vwf-node:nth-child(odd) {
  61. background-color: #BCC;
  62. }
  63. .vwf-children .vwf-node:nth-child(even) {
  64. background-color: #CBC;
  65. }
  66. .vwf-children .vwf-children {
  67. background-color: #AAA;
  68. }
  69. .vwf-children .vwf-children .vwf-node:nth-child(odd) {
  70. background-color: #9AA;
  71. }
  72. .vwf-children .vwf-children .vwf-node:nth-child(even) {
  73. background-color: #A9A;
  74. }
  75. .vwf-children .vwf-children .vwf-children {
  76. background-color: #888;
  77. }
  78. .vwf-children .vwf-children .vwf-children .vwf-node:nth-child(odd) {
  79. background-color: #788;
  80. }
  81. .vwf-children .vwf-children .vwf-children .vwf-node:nth-child(even) {
  82. background-color: #878;
  83. }
  84. .vwf-children .vwf-children .vwf-children .vwf-children {
  85. background-color: #666;
  86. }
  87. .vwf-children .vwf-children .vwf-children .vwf-children .vwf-node:nth-child(odd) {
  88. background-color: #566;
  89. }
  90. .vwf-children .vwf-children .vwf-children .vwf-children .vwf-node:nth-child(even) {
  91. background-color: #656;
  92. }
  93. .vwf-scripts {
  94. background-color: #CDD;
  95. }
  96. .vwf-properties, .vwf-methods, .vwf-events, .vwf-children, .vwf-scripts {
  97. padding: 0;
  98. }
  99. .vwf-properties > .vwf-label, .vwf-methods > .vwf-label, .vwf-events > .vwf-label, .vwf-children > .vwf-label, .vwf-scripts> .vwf-label {
  100. margin: 0;
  101. padding: 8px 5px 5px 5px;
  102. font-size: 12px;
  103. font-weight: bold;
  104. }
  105. .vwf-properties > .vwf-label {
  106. background-color: #CBB;
  107. }
  108. .vwf-methods > .vwf-label {
  109. background-color: #BCB;
  110. }
  111. .vwf-events > .vwf-label {
  112. background-color: #BBC;
  113. }
  114. .vwf-children > .vwf-label {
  115. background-color: #BBB;
  116. }
  117. .vwf-scripts > .vwf-label {
  118. background-color: #BCC;
  119. }
  120. .vwf-node > .vwf-label {
  121. padding-left: 3px;
  122. padding-bottom: 5px;
  123. }
  124. .vwf-label {
  125. margin: 0;
  126. padding: 2px 5px 2px 5px;
  127. font-size: 18px;
  128. font-family: Verdana, Arial, Helvetica, sans-serif;
  129. }
  130. .vwf-attribute {
  131. font-size: 14px;
  132. }
  133. #vwf-root {
  134. position:absolute;
  135. z-index:-1;
  136. }
  137. #vwf-root > .vwf-label > .vwf-attribute {
  138. font-size: 18px;
  139. }
  140. .vwf-node {
  141. padding: 10px;
  142. }
  143. #vwf-root>div, #vwf-root>canvas {
  144. margin-left: auto;
  145. margin-right: auto;
  146. display: block;
  147. }
  148. .vwf-control-slider, .vwf-control-roll-slider, .vwf-control-pitch-slider, .vwf-control-yaw-slider, .vwf-control-x-slider, .vwf-control-y-slider, .vwf-control-z-slider, .vwf-control-r-slider, .vwf-control-g-slider, .vwf-control-b-slider {
  149. display: inline-block;
  150. width: 15em;
  151. margin-left: 1ex;
  152. }
  153. .vwf-activeCamera-dropdown {
  154. display: inline-block;
  155. width: 15em;
  156. margin-left: 1ex;
  157. }
  158. .vwf-roll-value, .vwf-pitch-value, .vwf-yaw-value, .vwf-r-value, .vwf-g-value, .vwf-b-value, .vwf-a-value {
  159. display: inline-block;
  160. width: 2em;
  161. }
  162. .vwf-x-value, .vwf-y-value, .vwf-z-value {
  163. display: inline-block;
  164. width: 4em;
  165. }
  166. .vwf-err {
  167. border: 2px solid red;
  168. font: 14px Arial;
  169. background: #FFFFDD;
  170. color: #880000;
  171. padding: 8px;
  172. width: 300px;
  173. }
  174. .overlay {
  175. position:absolute;
  176. top:30%;
  177. width:99%;
  178. pointer-events:none;
  179. }
  180. .overlay p {
  181. padding:0px;
  182. margin:0px;
  183. }
  184. .overlay a:link {
  185. color:#888888;
  186. }
  187. .overlay a:visited {
  188. color:#888888;
  189. }
  190. .overlay a:hover {
  191. color:#CCCCCC;
  192. }
  193. .loading {
  194. margin:auto auto;
  195. color:#FFF;
  196. width:600px;
  197. height:400px;
  198. background:#050505;
  199. -moz-border-radius: 20px;
  200. -webkit-border-radius: 20px;
  201. -khtml-border-radius: 20px;
  202. border-radius: 20px;
  203. font:18px Arial;
  204. /*visibility: hidden;*/
  205. }
  206. /*
  207. .loadText {
  208. }
  209. */
  210. .requirements {
  211. margin-left: 100px;
  212. }
  213. .req {
  214. font-size:14px;
  215. position:relative;
  216. left:20px;
  217. }
  218. h1, h2, h3, h4, h5, h6, body, legend, label {
  219. text-shadow: 0px 0px 0 rgba(0, 0, 0, 0.3);
  220. }
  221. .pace {
  222. -webkit-pointer-events: none;
  223. pointer-events: none;
  224. -webkit-user-select: none;
  225. -moz-user-select: none;
  226. user-select: none;
  227. }
  228. .pace .pace-activity {
  229. display: block;
  230. position: fixed;
  231. z-index: 2000;
  232. top: 0;
  233. right: 0;
  234. width: 300px;
  235. height: 300px;
  236. background: #6c96f7;
  237. -webkit-transition: -webkit-transform 0.3s;
  238. transition: transform 0.3s;
  239. -webkit-transform: translateX(100%) translateY(-100%) rotate(45deg);
  240. transform: translateX(100%) translateY(-100%) rotate(45deg);
  241. pointer-events: none;
  242. }
  243. .pace.pace-active .pace-activity {
  244. -webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
  245. transform: translateX(50%) translateY(-50%) rotate(45deg);
  246. }
  247. .pace .pace-activity::before,
  248. .pace .pace-activity::after {
  249. position: absolute;
  250. bottom: 30px;
  251. left: 50%;
  252. display: block;
  253. border: 5px solid #fff;
  254. border-radius: 50%;
  255. content: '';
  256. }
  257. .pace .pace-activity::before {
  258. margin-left: -40px;
  259. width: 80px;
  260. height: 80px;
  261. border-right-color: rgba(0, 0, 0, .2);
  262. border-left-color: rgba(0, 0, 0, .2);
  263. -webkit-animation: pace-rotation 3s linear infinite;
  264. animation: pace-rotation 3s linear infinite;
  265. }
  266. .pace .pace-activity::after {
  267. bottom: 50px;
  268. margin-left: -20px;
  269. width: 40px;
  270. height: 40px;
  271. border-top-color: rgba(0, 0, 0, .2);
  272. border-bottom-color: rgba(0, 0, 0, .2);
  273. -webkit-animation: pace-rotation 1s linear infinite;
  274. animation: pace-rotation 1s linear infinite;
  275. }
  276. @-webkit-keyframes pace-rotation {
  277. 0% { -webkit-transform: rotate(0deg); }
  278. 100% { -webkit-transform: rotate(359deg); }
  279. }
  280. @keyframes pace-rotation {
  281. 0% { transform: rotate(0deg); }
  282. 100% { transform: rotate(359deg); }
  283. }
  284. #incompatibleBrowser {
  285. visibility: hidden;
  286. position: absolute;
  287. left: 0px;
  288. top: 0px;
  289. width:100%;
  290. height:100%;
  291. text-align:center;
  292. z-index: 1000;
  293. }
  294. .guiwindow {
  295. position: absolute;
  296. border: 0;
  297. right: 40px;
  298. bottom: 20px;
  299. cursor: pointer;
  300. min-width: 50px;
  301. min-height: 30px;
  302. padding-right: 5%;
  303. padding-top: 4%;
  304. position: absolute;
  305. transition: background-color .05s ease;
  306. -webkit-transition: background-color .05s ease;
  307. z-index: 9999;
  308. }
  309. .loader {
  310. z-index: 10;
  311. position: absolute;
  312. top: 0px;
  313. }
  314. .visible {
  315. visibility: visible;
  316. }
  317. .not-visible {
  318. visibility: hidden;
  319. }