styles.css 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  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. .center_point {
  138. top: 50%;
  139. left: 50%;
  140. position: absolute;
  141. }
  142. .dialog {
  143. position:relative;
  144. min-height: auto;
  145. max-height: 80%;
  146. width: 50%;
  147. padding:0 20px 20px;
  148. z-index: 30;
  149. background-color: whitesmoke;
  150. border:2px solid crimson;
  151. border-radius: 5px;
  152. overflow-x:hidden;
  153. overflow-y:auto;
  154. }
  155. .dialog_title {
  156. padding: 10px;
  157. font-style: italic;
  158. font-weight: bold;
  159. }
  160. .dim_bg {
  161. opacity:0.30;
  162. z-index: 20;
  163. height: 100%;
  164. width: 100%;
  165. background: lavender repeat;
  166. position:fixed;
  167. top: 0;
  168. left: 0;
  169. cursor:not-allowed;
  170. }
  171. .disabled_link {
  172. pointer-events:none;
  173. color:grey;
  174. cursor:not-allowed;
  175. }
  176. .dock {
  177. position:absolute;
  178. top:5px;
  179. left:5px;
  180. z-index:10;
  181. overflow: auto;
  182. width: calc(100% - 20px);
  183. background-color: rgba(245, 245, 245, 0.7)
  184. }
  185. .disabled_dock {
  186. opacity:0.5;
  187. z-index:-1;
  188. }
  189. .droppable {
  190. background-color: chartreuse !important ;
  191. border: 1px dashed black !important;
  192. opacity: 0.5 !important;
  193. }
  194. .dropzone {
  195. width:200px;
  196. height:50px;
  197. background: lightblue no-repeat center center;
  198. padding:10px;
  199. border: 1px solid black;
  200. border-radius:10px;
  201. opacity:0.75
  202. }
  203. .empty_icon {
  204. opacity:0;
  205. cursor:pointer;
  206. }
  207. .enabled_link {
  208. color:indianred;
  209. cursor:pointer;
  210. }
  211. .error{
  212. color:crimson;
  213. }
  214. .fileb_icon {
  215. padding:5px;
  216. opacity:0.75;
  217. display: inline-block;
  218. text-align: left;
  219. }
  220. .fileb_icon:hover {
  221. opacity:1;
  222. }
  223. .fileb_icon_selected {
  224. padding:5px;
  225. opacity:1;
  226. display: inline-block;
  227. text-align: left;
  228. border-radius:8px;
  229. background:lightBlue;
  230. }
  231. .fileb_pane {
  232. padding:3px;
  233. border:1px solid black;
  234. border-radius: 5px;
  235. background-color: white;
  236. height: 300px;
  237. overflow:auto;
  238. }
  239. .footer {
  240. position:absolute;
  241. bottom:25px;
  242. right:32px;
  243. }
  244. .geometry_ctrls {
  245. position:fixed;
  246. padding:2px;
  247. background-color: whitesmoke;
  248. border:2px solid crimson;
  249. border-radius: 5px;
  250. }
  251. .geometry_ctrl {
  252. opacity:0.75;
  253. cursor:pointer;
  254. }
  255. .geometry_ctrl:hover {
  256. opacity:1;
  257. }
  258. .header {
  259. position:absolute;
  260. top:5px;
  261. right:32px;
  262. z-index:20;
  263. }
  264. .login {
  265. position:relative;
  266. margin: 10% auto;
  267. width: 300px;
  268. opacity: 1;
  269. padding: 10px;
  270. z-index: 101;
  271. background-color: snow;
  272. border: 5px solid dodgerblue;
  273. border-radius: 10px;
  274. overflow-x:hidden;
  275. overflow-y:auto;
  276. }
  277. .progress_bar {
  278. display: inline-block;
  279. border: 1px solid black;
  280. border-radius: 10px;
  281. height: 10px;
  282. width: 100px;
  283. margin: 0 5px;
  284. }
  285. .progress_fill {
  286. border-radius: 10px;
  287. background-color: crimson;
  288. opacity: 0.75;
  289. height: 10px;
  290. width: 0;
  291. }
  292. .toolbar_alt {
  293. line-height:32px;
  294. }
  295. .toolbar {
  296. padding-top:4px;
  297. margin:2px;
  298. background-color: whitesmoke ;
  299. border-radius: 5px;
  300. float:left;
  301. }
  302. .toolbar_bm {
  303. border:2px solid lightblue;
  304. }
  305. .toolbar_mm {
  306. border:2px solid khaki;
  307. }
  308. .toolbar_space {
  309. padding-left:4px;
  310. }
  311. .toolbar_button {
  312. display: inline-block;
  313. opacity:0.75;
  314. cursor:pointer;
  315. }
  316. .toolbar_button:hover {
  317. opacity:1;
  318. }
  319. .toolbar_button:active {
  320. opacity:0.5;
  321. }
  322. .transformation_preview {
  323. stroke: crimson;
  324. stroke-width:0.5;
  325. stroke-dasharray:5,5;
  326. fill: lavender;
  327. fill-opacity:0.1;
  328. cursor:not-allowed;
  329. }
  330. .unselectable {
  331. -webkit-user-select:none;
  332. -moz-user-select: none;
  333. }
  334. form, p, span {
  335. margin:0 auto;
  336. padding:0; }
  337. input { font:12px arial; }
  338. a {
  339. color:#0000FF;
  340. text-decoration:none; }
  341. a:hover { text-decoration:underline; }
  342. #chat, #loginform {
  343. display:none;
  344. margin:0 auto;
  345. padding-bottom:25px;
  346. background:#EBF4FB;
  347. width:504px;
  348. border:1px solid #ACD8F0; }
  349. #loginform { padding-top:18px; }
  350. #loginform p { margin: 5px; }
  351. #chatbox {
  352. text-align:left;
  353. margin: 0 auto 25px;
  354. padding:10px;
  355. background:#fff;
  356. height:270px;
  357. width:430px;
  358. border:1px solid #ACD8F0;
  359. overflow:auto; }
  360. #usermsg {
  361. width:395px;
  362. border:1px solid #ACD8F0; }
  363. #submit { width: 60px; }
  364. .error { color: #ff0000; }
  365. #menu { padding:13px 25px 13px 25px; }
  366. .welcome { float:left; }
  367. .logout { float:right; }
  368. .msgln { margin:0 0 2px 0; }