main.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. h1,h2,h3,h4{
  2. font-family: 'Open Sans Light';
  3. }
  4. .toolbar{
  5. border-bottom:1px solid #cecece;
  6. list-style-type:none;
  7. margin:0px;
  8. border-top:1px solid #cecece;
  9. padding:10px 0px 10px 0px;
  10. }
  11. .toolbar li{
  12. background: #eeeeee none repeat scroll 0 0;
  13. color: #737373;
  14. cursor: move;
  15. font-size:20px;
  16. float: left;
  17. margin-left: 10px;
  18. padding: 5px;
  19. transition:background-color 0.2s ease-in-out;
  20. }
  21. .toolbar li:hover{
  22. background: #3984DE none repeat scroll 0 0;
  23. color:#ffffff;
  24. }
  25. li.dragged{
  26. opacity:0.5;
  27. position:absolute;
  28. background: #3984DE;
  29. border-radius: 40px;
  30. color: #ffffff;
  31. cursor: move;
  32. padding: 10px;
  33. cursor:move;
  34. list-style-type:none;
  35. }
  36. .workspace{
  37. margin:15px 0px;
  38. list-style-type:none;
  39. padding:0px;
  40. }
  41. .workspace input,select{
  42. border:0px;
  43. border-radius:0px;
  44. padding-left:5px;
  45. padding-right:5px;
  46. margin:0;
  47. max-width:150px;
  48. height: auto;
  49. vertical-align:top;
  50. }
  51. .workspace li{
  52. padding:0px;
  53. width:100%;
  54. cursor:move;
  55. }
  56. .workspace .line{
  57. background: #f1f3fb none repeat scroll 0 0;
  58. color: #111111;
  59. overflow: hidden;
  60. }
  61. .workspace li.ui-draggable-dragging .place,.workspace li.ui-draggable-dragging .union{
  62. display:none;
  63. }
  64. .workspace li strong{
  65. display: inline-block;
  66. font-size: 25px;
  67. font-weight: 300;
  68. line-height: 36px;
  69. margin-left: 5px;
  70. vertical-align: top;
  71. }
  72. .workspace li input,.workspace li select{
  73. margin:5px;
  74. }
  75. .line i{
  76. background:#3984DE ;
  77. font-size:20px;
  78. color:#ffffff;
  79. padding:9px;
  80. }
  81. .workspace div.place{
  82. background: #ffffff none repeat scroll 0 0;
  83. border: 2px dotted #cecece;
  84. color: #cecece;
  85. font-size: 30px;
  86. margin: 5px 0;
  87. padding: 10px;
  88. text-align: center;
  89. }
  90. .workspace div.place.dragover{
  91. color: #4E96E3;
  92. border-color: #4E96E3;
  93. }
  94. #story .union{
  95. text-align:center;
  96. border:0px;
  97. float:left;
  98. margin:0px auto;
  99. color:#cecece;
  100. margin-top:10px;
  101. background-color:#fff;
  102. padding:0px;
  103. font-weight:bold;
  104. font-size:19px;
  105. width:65px;
  106. }
  107. #story .firstunion{
  108. text-align:center;
  109. font-size:30px;
  110. border:0px;
  111. color:#cecece;
  112. font-weight:bold;
  113. margin:0px auto;
  114. background-color:#fff;
  115. text-align:center;
  116. width:100%;
  117. margin-top:10px;
  118. }
  119. #causePanel,#effectPanel{
  120. width:100%;
  121. }
  122. #effectPanel{
  123. display:none;
  124. }
  125. .story h1{
  126. margin:3px 3px 3px 0px;
  127. padding:0;
  128. display:inline-block;
  129. }
  130. .story h1 input{
  131. border:0px;
  132. color:#565656;
  133. width:200px;
  134. font-size:25px;
  135. }
  136. .story h2{
  137. margin:3px 3px 3px 15px;
  138. padding:0;
  139. color:#cecece;
  140. cursor:pointer;
  141. display:inline-block;
  142. }
  143. .story h2 span.active{
  144. color:#3984de;
  145. }
  146. .workspace .operator{
  147. text-align:center;
  148. margin-left:10px;
  149. width:50px;
  150. }
  151. .workspace .line .delete{
  152. float:right;
  153. cursor:pointer;
  154. transition:opacity 0.3s linear;
  155. opacity: 0;
  156. }
  157. .workspace .line .delete i{
  158. background:transparent;
  159. color:#cecece;
  160. }
  161. .workspace .line:hover .delete{
  162. opacity:1;
  163. }
  164. .story_loader{
  165. width:15px;
  166. cursor:pointer;
  167. transition:all 0.2s ease-in-out;
  168. }
  169. .story_loader i:before{
  170. content:'\f0a6';
  171. }
  172. .story_loader.loading i:before{
  173. content:'\f021';
  174. }
  175. .story_loader span{
  176. display:none;
  177. font-family: Open Sans;
  178. }
  179. .story_loader.loading span{
  180. display:inline-block;
  181. }
  182. .story_loader.loading{
  183. width:120px;
  184. }