styles.css 5.9 KB

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