styles.css 6.5 KB

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