index.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. body {
  2. background-color: rgb(255, 255, 255);
  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. #root {
  11. position:absolute;
  12. z-index:-1;
  13. }
  14. #root>div, #root>canvas {
  15. margin-left: auto;
  16. margin-right: auto;
  17. display: block;
  18. }
  19. .vwf-err {
  20. border: 2px solid red;
  21. font: 14px Arial;
  22. background: #FFFFDD;
  23. color: #880000;
  24. padding: 8px;
  25. width: 300px;
  26. }
  27. .overlay {
  28. position:absolute;
  29. top:30%;
  30. width:99%;
  31. pointer-events:none;
  32. }
  33. /*
  34. .overlay p {
  35. padding:0px;
  36. margin:0px;
  37. }
  38. */
  39. .overlay a:link {
  40. color:#888888;
  41. }
  42. .overlay a:visited {
  43. color:#888888;
  44. }
  45. .overlay a:hover {
  46. color:#CCCCCC;
  47. }
  48. .loading {
  49. margin:auto auto;
  50. color:#FFF;
  51. width:600px;
  52. height:400px;
  53. background:#050505;
  54. -moz-border-radius: 20px;
  55. -webkit-border-radius: 20px;
  56. -khtml-border-radius: 20px;
  57. border-radius: 20px;
  58. font:18px Arial;
  59. /*visibility: hidden;*/
  60. }
  61. .requirements {
  62. margin-left: 100px;
  63. }
  64. .req {
  65. font-size:14px;
  66. position:relative;
  67. left:20px;
  68. }
  69. .guiwindow {
  70. position: absolute;
  71. border: 0;
  72. right: 0px;
  73. bottom: 70px;
  74. cursor: pointer;
  75. min-width: 50px;
  76. min-height: 30px;
  77. padding-right: 2%;
  78. padding-top: 4%;
  79. position: absolute;
  80. transition: background-color .05s ease;
  81. -webkit-transition: background-color .05s ease;
  82. z-index: 9999;
  83. }
  84. .loader {
  85. display: block;
  86. }
  87. .visible {
  88. visibility: visible;
  89. }
  90. .not-visible {
  91. visibility: hidden;
  92. }
  93. .dragdropArea {
  94. width: 400px;
  95. height: 200px;
  96. border-width: medium;
  97. border: rgb(3, 81, 137);
  98. border-style: dotted;
  99. }
  100. .drag {
  101. border: 5px solid rgba(195, 0, 0, 0.751);
  102. }
  103. a.link-in-text {
  104. outline: none;
  105. text-decoration: none;
  106. color: inherit;
  107. border-bottom: 1px solid;
  108. }
  109. a.link-in-text:link {
  110. border-bottom: 1px solid;
  111. }
  112. a.link-in-text:visited {
  113. border-bottom: 1px solid;
  114. }
  115. a.link-in-text:focus {
  116. border-bottom: 2px solid;
  117. }
  118. a.link-in-text:hover {
  119. border-bottom: 2px solid;
  120. }
  121. a.link-in-text:active {
  122. border-bottom: 1px solid;
  123. }
  124. .unselectable {
  125. -moz-user-select: text;
  126. -khtml-user-select: text;
  127. -webkit-user-select: text;
  128. -ms-user-select: text;
  129. user-select: text;
  130. }