scrawl.css 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. /*common
  2. */
  3. body {
  4. margin: 0;
  5. }
  6. table {
  7. width: 100%;
  8. }
  9. table td {
  10. padding: 2px 4px;
  11. vertical-align: middle;
  12. }
  13. a {
  14. text-decoration: none;
  15. }
  16. em {
  17. font-style: normal;
  18. }
  19. .border_style1 {
  20. border: 1px solid #ccc;
  21. border-radius: 5px;
  22. box-shadow: 2px 2px 5px #d3d6da;
  23. }
  24. /*module
  25. */
  26. .main {
  27. margin: 20px 20px 0;
  28. overflow: hidden;
  29. }
  30. .hot {
  31. float: left;
  32. }
  33. .drawBoard {
  34. position: relative;
  35. cursor: crosshair;
  36. }
  37. .brushBorad {
  38. position: absolute;
  39. left: 0;
  40. top: 0;
  41. z-index: 998;
  42. }
  43. .picBoard {
  44. border: none;
  45. text-align: center;
  46. line-height: 300px;
  47. cursor: default;
  48. }
  49. .operateBar {
  50. margin-top: 10px;
  51. font-size: 12px;
  52. text-align: center;
  53. }
  54. .operateBar span {
  55. margin-left: 10px;
  56. margin-right: 18px;
  57. }
  58. .drawToolbar {
  59. float: right;
  60. width: 175px;
  61. height: 372px;
  62. overflow: hidden;
  63. }
  64. .colorBar {
  65. margin-top: 10px;
  66. margin-left: 10px;
  67. font-size: 12px;
  68. text-align: center;
  69. }
  70. #J_removeImg {
  71. display: block;
  72. margin-top: 18px;
  73. }
  74. #J_addImg {
  75. display: block;
  76. margin-top: 16px;
  77. }
  78. .colorBar #J_colorList tr {
  79. height: 32px;
  80. }
  81. .colorBar a {
  82. display: block;
  83. width: 16px;
  84. height: 16px;
  85. border: 1px solid #1006F1;
  86. border-radius: 8px;
  87. box-shadow: 2px 2px 5px #d3d6da;
  88. opacity: 0.6
  89. }
  90. .sectionBar {
  91. margin-top: 20px;
  92. font-size: 12px;
  93. text-align: center;
  94. display: flex;
  95. justify-content: center;
  96. align-items: center;
  97. }
  98. /*.sectionBar a{display:inline-block;width:10px;height:12px;color: #888;text-indent: -999px;opacity: 0.3}*/
  99. /*.size1{background: url('images/size.png') 1px center no-repeat ;}*/
  100. /*.size2{background: url('images/size.png') -10px center no-repeat;}*/
  101. /*.size3{background: url('images/size.png') -22px center no-repeat;}*/
  102. /*.size4{background: url('images/size.png') -35px center no-repeat;}*/
  103. .size1 {
  104. width: 4px;
  105. height: 4px;
  106. border-radius: 2px;
  107. text-indent: -999px;
  108. opacity: 0.3;
  109. display: block;
  110. background-color: #3498db;
  111. margin-right: 17px;
  112. margin-left: 15px;
  113. }
  114. .size2 {
  115. width: 8px;
  116. height: 8px;
  117. border-radius: 4px;
  118. text-indent: -999px;
  119. opacity: 0.3;
  120. display: block;
  121. margin-right: 17px;
  122. background-color: #3498db;
  123. }
  124. .size3 {
  125. width: 12px;
  126. height: 12px;
  127. border-radius: 6px;
  128. text-indent: -999px;
  129. opacity: 0.3;
  130. display: block;
  131. background-color: #3498db;
  132. margin-right: 17px;
  133. }
  134. .size4 {
  135. width: 16px;
  136. height: 16px;
  137. border-radius: 8px;
  138. text-indent: -999px;
  139. opacity: 0.3;
  140. display: block;
  141. background-color: #3498db;
  142. }
  143. .addImgH {
  144. position: relative;
  145. }
  146. .addImgH_form {
  147. position: absolute;
  148. left: 18px;
  149. top: -1px;
  150. width: 75px;
  151. height: 21px;
  152. opacity: 0;
  153. cursor: pointer;
  154. }
  155. .addImgH_form input {
  156. width: 100%;
  157. }
  158. /*scrawl遮罩层
  159. */
  160. .maskLayerNull {
  161. display: none;
  162. }
  163. .maskLayer {
  164. position: absolute;
  165. top: 0;
  166. left: 0;
  167. width: 100%;
  168. height: 100%;
  169. opacity: 0.7;
  170. background-color: #fff;
  171. text-align: center;
  172. font-weight: bold;
  173. line-height: 410px;
  174. z-index: 1000;
  175. }
  176. .maskLayer input {
  177. border-radius: 2px;
  178. border: 1px solid #ccc;
  179. padding: 4px 12px;
  180. }
  181. /*btn state
  182. */
  183. .previousStepH .icon {
  184. display: inline-block;
  185. width: 16px;
  186. height: 16px;
  187. }
  188. .previousStepH .text {
  189. color: #888;
  190. cursor: pointer;
  191. }
  192. .previousStep .icon {
  193. display: inline-block;
  194. width: 16px;
  195. height: 16px;
  196. }
  197. .previousStep .text {
  198. color: #ccc;
  199. cursor: default;
  200. }
  201. .nextStepH .icon {
  202. display: inline-block;
  203. width: 16px;
  204. height: 16px;
  205. }
  206. .nextStepH .text {
  207. color: #888;
  208. cursor: pointer;
  209. }
  210. .nextStep .icon {
  211. display: inline-block;
  212. width: 16px;
  213. height: 16px;
  214. }
  215. .nextStep .text {
  216. color: #ccc;
  217. cursor: default;
  218. }
  219. .clearBoardH .icon {
  220. display: inline-block;
  221. width: 16px;
  222. height: 16px;
  223. /*background-image: url('images/empty.png');*/
  224. cursor: default;
  225. }
  226. .clearBoardH .text {
  227. color: #888;
  228. cursor: pointer;
  229. }
  230. .clearBoard .icon {
  231. display: inline-block;
  232. width: 16px;
  233. height: 16px;
  234. /*background-image: url('images/empty.png');*/
  235. cursor: default;
  236. }
  237. .clearBoard .text {
  238. color: #ccc;
  239. cursor: default;
  240. }
  241. .scaleBoardH .icon {
  242. display: inline-block;
  243. width: 16px;
  244. height: 16px;
  245. }
  246. .scaleBoardH .text {
  247. color: #888;
  248. cursor: pointer;
  249. }
  250. .scaleBoard .icon {
  251. display: inline-block;
  252. width: 16px;
  253. height: 16px;
  254. }
  255. .scaleBoard .text {
  256. color: #ccc;
  257. cursor: default;
  258. }
  259. .removeImgH .icon {
  260. display: inline-block;
  261. width: 16px;
  262. height: 16px;
  263. background-image: url('images/delimgH.png');
  264. cursor: pointer;
  265. }
  266. .removeImgH .text {
  267. color: #888;
  268. cursor: pointer;
  269. }
  270. .removeImg .icon {
  271. display: inline-block;
  272. width: 16px;
  273. height: 16px;
  274. background-image: url('images/delimg.png');
  275. cursor: default;
  276. }
  277. .removeImg .text {
  278. color: #fff;
  279. cursor: default;
  280. padding: 7px 12px;
  281. border-radius: 6px;
  282. background-color: #f25f5f;
  283. }
  284. .addImgH .icon {
  285. vertical-align: top;
  286. display: inline-block;
  287. width: 16px;
  288. height: 16px;
  289. background-image: url('images/addimg.png')
  290. }
  291. .addImgH .text {
  292. color: #888;
  293. cursor: pointer;
  294. padding: 7px 12px;
  295. border-radius: 6px;
  296. background-color: #f3f3f3;
  297. }
  298. /*icon
  299. */
  300. .brushIcon {
  301. display: inline-block;
  302. width: 16px;
  303. height: 16px;
  304. font-size: 16px;
  305. margin-top: -5px;
  306. }
  307. .eraserIcon {
  308. display: inline-block;
  309. width: 16px;
  310. height: 16px;
  311. font-size: 18px !important;
  312. margin-top: -16px;
  313. }
  314. .icon {
  315. font-size: 18px;
  316. }