styles.css 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  1. div, span {
  2. cursor:default;
  3. }
  4. input, textarea {
  5. cursor:text;
  6. }
  7. textarea.string_input {
  8. resize: none;
  9. }
  10. textarea.string_input {
  11. resize: none;
  12. }
  13. select, option, button {
  14. cursor:pointer;
  15. }
  16. button {
  17. font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
  18. font-size:11px;
  19. }
  20. span.feedback {
  21. color: red;
  22. }
  23. html {
  24. width: 100%;
  25. height: 100%;
  26. overflow: hidden;
  27. }
  28. .inputDiv {
  29. position: absolute;
  30. left: 10px;
  31. right: 20px;
  32. padding: 5px 10px;
  33. height: 32px;
  34. }
  35. .contentDiv {
  36. position: absolute;
  37. left: 0;
  38. right: 0;
  39. top: 0;
  40. bottom: 0;
  41. box-shadow: inset 7px 7px 5px rgba(0, 0, 0, 0.1);
  42. }
  43. .rootDiv {
  44. position: absolute;
  45. top: 0;
  46. left: 0;
  47. right: 0;
  48. bottom: 0;
  49. overflow: hidden;
  50. }
  51. .commandHistory {
  52. width: 100%;
  53. position: absolute;
  54. display: none;
  55. }
  56. .mainInput {
  57. width: 100%;
  58. border: 1px solid black;
  59. }
  60. .mainInput:focus {
  61. box-shadow: 0 0 5px rgb(100, 200, 255);
  62. outline: none;
  63. }
  64. .mainInput.error:focus {
  65. box-shadow: 0 0 5px red;
  66. }
  67. .canvas {
  68. position:relative;
  69. height:100%;
  70. width:100%;
  71. overflow:auto;
  72. background: url(media/gridbg.png) top left repeat;
  73. cursor:crosshair;
  74. }
  75. .canvas_selection {
  76. stroke: chartreuse;
  77. stroke-width:0.5;
  78. stroke-dasharray:5,5;
  79. fill: chartreuse;
  80. fill-opacity:0.1;
  81. cursor:move;
  82. }
  83. .canvas_selection_overlay {
  84. stroke-width:0.1;
  85. fill:#0000ff;
  86. fill-opacity:0.10;
  87. cursor:crosshair;
  88. }
  89. .clickable {
  90. cursor:pointer;
  91. }
  92. .code_style {
  93. display:inline;
  94. font-family:"andale mono",monospace;
  95. font-size:11px;
  96. border-radius: 5px;
  97. }
  98. .container {
  99. position: relative;
  100. width: 100%;
  101. height: 100%;
  102. overflow: auto;
  103. }
  104. .ctrl_point_overlay {
  105. stroke: purple;
  106. stroke-width:1;
  107. fill: coral;
  108. fill-opacity:0.5;
  109. cursor:move;
  110. }
  111. .ctrl_point_center_overlay {
  112. stroke: lime;
  113. stroke-width:1;
  114. fill: khaki;
  115. fill-opacity:0.5;
  116. cursor:move;
  117. }
  118. .dark_bg {
  119. opacity:0.85;
  120. z-index: 100;
  121. height: 100%;
  122. width: 100%;
  123. background: black repeat;
  124. position:fixed;
  125. top: 0;
  126. left: 0;
  127. cursor:not-allowed;
  128. }
  129. .default_style {
  130. display:inline;
  131. font-family:"lucida grande",tahoma,verdana,arial,sans-serif;
  132. font-size:11px;
  133. border-radius: 5px;
  134. padding: 0;
  135. margin: 0;
  136. }
  137. .dialog {
  138. position:absolute;
  139. padding:0 20px 20px;
  140. max-height:100%;
  141. max-width:100%;
  142. z-index: 30;
  143. background-color: whitesmoke;
  144. border:2px solid crimson;
  145. border-radius: 5px;
  146. overflow-x:hidden;
  147. overflow-y:auto;
  148. }
  149. .dialog_title {
  150. padding: 10px;
  151. font-style: italic;
  152. font-weight: bold;
  153. }
  154. .dim_bg {
  155. opacity:0.30;
  156. z-index: 20;
  157. height: 100%;
  158. width: 100%;
  159. background: lavender repeat;
  160. position:fixed;
  161. top: 0;
  162. left: 0;
  163. cursor:not-allowed;
  164. }
  165. .disabled_link {
  166. pointer-events:none;
  167. color:grey;
  168. cursor:not-allowed;
  169. }
  170. .dock {
  171. position:absolute;
  172. top:5px;
  173. left:5px;
  174. z-index:10;
  175. overflow: auto;
  176. }
  177. .disabled_dock {
  178. opacity:0.5;
  179. z-index:-1;
  180. }
  181. .droppable {
  182. background-color: chartreuse !important ;
  183. border: 1px dashed black !important;
  184. opacity: 0.5 !important;
  185. }
  186. .dropzone {
  187. width:200px;
  188. height:50px;
  189. background: lightblue no-repeat center center;
  190. padding:10px;
  191. border: 1px solid black;
  192. border-radius:10px;
  193. opacity:0.75
  194. }
  195. .empty_icon {
  196. opacity:0;
  197. cursor:pointer;
  198. }
  199. .enabled_link {
  200. color:indianred;
  201. cursor:pointer;
  202. }
  203. .error{
  204. color:crimson;
  205. }
  206. .fileb_icon {
  207. padding:5px;
  208. opacity:0.75;
  209. display: inline-block;
  210. text-align: left;
  211. }
  212. .fileb_icon:hover {
  213. opacity:1;
  214. }
  215. .fileb_icon_selected {
  216. padding:5px;
  217. opacity:1;
  218. display: inline-block;
  219. text-align: left;
  220. border-radius:8px;
  221. background:lightBlue;
  222. }
  223. .fileb_pane {
  224. padding:3px;
  225. border:1px solid black;
  226. border-radius: 5px;
  227. background-color: white;
  228. height: 300px;
  229. overflow:auto;
  230. }
  231. .footer {
  232. position:absolute;
  233. bottom:25px;
  234. right:32px;
  235. }
  236. .geometry_ctrls {
  237. position:fixed;
  238. padding:2px;
  239. background-color: whitesmoke;
  240. border:2px solid crimson;
  241. border-radius: 5px;
  242. }
  243. .geometry_ctrl {
  244. opacity:0.75;
  245. cursor:pointer;
  246. }
  247. .geometry_ctrl:hover {
  248. opacity:1;
  249. }
  250. .header {
  251. position:absolute;
  252. top:5px;
  253. right:32px;
  254. z-index:20;
  255. }
  256. .login {
  257. position:relative;
  258. margin: 10% auto;
  259. width: 300px;
  260. opacity: 1;
  261. padding: 10px;
  262. z-index: 101;
  263. background-color: snow;
  264. border: 5px solid dodgerblue;
  265. border-radius: 10px;
  266. overflow-x:hidden;
  267. overflow-y:auto;
  268. }
  269. .progress_bar {
  270. display: inline-block;
  271. border: 1px solid black;
  272. border-radius: 10px;
  273. height: 10px;
  274. width: 100px;
  275. margin: 0 5px;
  276. }
  277. .progress_fill {
  278. border-radius: 10px;
  279. background-color: crimson;
  280. opacity: 0.75;
  281. height: 10px;
  282. width: 0;
  283. }
  284. .toolbar_alt {
  285. line-height:32px;
  286. }
  287. .toolbar {
  288. padding-top:4px;
  289. margin:2px;
  290. background-color: whitesmoke ;
  291. border-radius: 5px;
  292. float:left;
  293. }
  294. .toolbar_bm {
  295. border:2px solid lightblue;
  296. }
  297. .toolbar_mm {
  298. border:2px solid khaki;
  299. }
  300. .toolbar_space {
  301. padding-left:4px;
  302. }
  303. .toolbar_button {
  304. display: inline-block;
  305. opacity:0.75;
  306. cursor:pointer;
  307. }
  308. .toolbar_button:hover {
  309. opacity:1;
  310. }
  311. .toolbar_button:active {
  312. opacity:0.5;
  313. }
  314. .transformation_preview {
  315. stroke: crimson;
  316. stroke-width:0.5;
  317. stroke-dasharray:5,5;
  318. fill: lavender;
  319. fill-opacity:0.1;
  320. cursor:not-allowed;
  321. }
  322. .unselectable {
  323. -webkit-user-select:none;
  324. -moz-user-select: none;
  325. }
  326. form, p, span {
  327. margin:0 auto;
  328. padding:0; }
  329. input { font:12px arial; }
  330. a {
  331. color:#0000FF;
  332. text-decoration:none; }
  333. a:hover { text-decoration:underline; }
  334. #chat, #loginform {
  335. display:none;
  336. margin:0 auto;
  337. padding-bottom:25px;
  338. background:#EBF4FB;
  339. width:504px;
  340. border:1px solid #ACD8F0; }
  341. #loginform { padding-top:18px; }
  342. #loginform p { margin: 5px; }
  343. #chatbox {
  344. text-align:left;
  345. margin: 0 auto 25px;
  346. padding:10px;
  347. background:#fff;
  348. height:270px;
  349. width:430px;
  350. border:1px solid #ACD8F0;
  351. overflow:auto; }
  352. #usermsg {
  353. width:395px;
  354. border:1px solid #ACD8F0; }
  355. #submit { width: 60px; }
  356. .error { color: #ff0000; }
  357. #menu { padding:13px 25px 13px 25px; }
  358. .welcome { float:left; }
  359. .logout { float:right; }
  360. .msgln { margin:0 0 2px 0; }