styles.css 5.8 KB

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