main.css 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. #loading {
  2. background: url("../../resource/images/mainpage/loading.gif");
  3. background-repeat: no-repeat;
  4. height: 100%;
  5. width: 100%;
  6. display: block;
  7. position: absolute;
  8. top: 40%;
  9. left: 40%;
  10. color: green;
  11. }
  12. .font-face-display {
  13. font-size: 15px;
  14. text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.8), 1px 1px 0 rgba(50, 50, 50, 0.5);
  15. color: #eee;
  16. letter-spacing: 1px;
  17. }
  18. .custom-top {
  19. background: #e18728;
  20. zoom: 1;
  21. width: 100% !important;
  22. z-index: 6000;
  23. box-shadow: 0 0 10px black;
  24. font: 13px "Lucida Grande", Sans-Serif !important;
  25. }
  26. .custom-tb {
  27. height: 35px;
  28. border-top: 1px solid #96d1f8;
  29. background: #65a9d7;
  30. background: -webkit-gradient(linear, left top, left bottom, from(#ced3d9), to(#65a9d7) );
  31. background: -webkit-linear-gradient(top, #ced3d9, #65a9d7);
  32. background: -moz-linear-gradient(top, #ced3d9, #65a9d7);
  33. background: -ms-linear-gradient(top, #ced3d9, #65a9d7);
  34. background: -o-linear-gradient(top, #ced3d9, #65a9d7);
  35. -webkit-border-radius: 15px;
  36. -moz-border-radius: 15px;
  37. border-radius: 15px;
  38. -webkit-box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  39. -moz-box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  40. box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  41. text-shadow: rgba(0, 0, 0, .4) 0 1px 0;
  42. }
  43. .custom-tb .x-toolbar-text {
  44. font-size: 16px;
  45. font-family: "Lucida Grande", Sans-Serif !important;
  46. text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.3), 1px 1px 0 rgba(255, 255, 255, 0.3);
  47. color: #150f3d !important;
  48. font-weight: 600;
  49. }
  50. .custom-button {
  51. cursor: pointer;
  52. border-top: 1px solid #96d1f8;
  53. background: #65a9d7;
  54. background: -webkit-gradient(linear, left top, left bottom, from(#3e779d), to(#65a9d7) );
  55. background: -webkit-linear-gradient(top, #3e779d, #65a9d7);
  56. background: -moz-linear-gradient(top, #3e779d, #65a9d7);
  57. background: -ms-linear-gradient(top, #3e779d, #65a9d7);
  58. background: -o-linear-gradient(top, #3e779d, #65a9d7);
  59. padding: 5px 10px;
  60. -webkit-border-radius: 8px;
  61. -moz-border-radius: 8px;
  62. border-radius: 8px;
  63. -webkit-box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  64. -moz-box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  65. box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  66. text-shadow: rgba(0, 0, 0, .4) 0 1px 0;
  67. color: white;
  68. font-size: 14px;
  69. font-family: Georgia, serif;
  70. text-decoration: none;
  71. vertical-align: middle;
  72. height: 28;
  73. }
  74. .custom-button-link {
  75. cursor: pointer;
  76. height: 28;
  77. border-top: 1px solid #96d1f8;
  78. bbackground: #8eb6d1;
  79. background: -webkit-gradient(linear, left top, left bottom, from(#dfebf2), to(#8eb6d1) );
  80. background: -webkit-linear-gradient(top, #dfebf2, #8eb6d1);
  81. background: -moz-linear-gradient(top, #dfebf2, #8eb6d1);
  82. background: -ms-linear-gradient(top, #dfebf2, #8eb6d1);
  83. background: -o-linear-gradient(top, #dfebf2, #8eb6d1);
  84. padding: 5px 10px;
  85. -webkit-border-radius: 7px;
  86. -moz-border-radius: 7px;
  87. border-radius: 7px;
  88. -webkit-box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  89. -moz-box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  90. box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  91. text-shadow: rgba(0, 0, 0, .4) 0 1px 0;
  92. color: black;
  93. font-size: 12px;
  94. font-family: Georgia, serif;
  95. text-decoration: none;
  96. vertical-align: middle;
  97. }
  98. .custom-button:hover,.custom-button-link:hover {
  99. border-top-color: #28597a;
  100. background: #28597a;
  101. color: #ccc;
  102. }
  103. .custom-button:active,.custom-button-link:active {
  104. border-top-color: #1b435e;
  105. background: #1b435e;
  106. }
  107. .leaf {
  108. color: black;
  109. background: #8eb6d1;
  110. background: -webkit-gradient(linear, left top, left bottom, from(#dfebf2), to(#8eb6d1) );
  111. background: -webkit-linear-gradient(top, #dfebf2, #8eb6d1);
  112. background: -moz-linear-gradient(top, #dfebf2, #8eb6d1);
  113. background: -ms-linear-gradient(top, #dfebf2, #8eb6d1);
  114. background: -o-linear-gradient(top, #dfebf2, #8eb6d1);
  115. }
  116. .node {
  117. background: #65a9d7;
  118. background: -webkit-gradient(linear, left top, left bottom, from(#5aafe8), to(#65a9d7) );
  119. background: -webkit-linear-gradient(top, #5aafe8, #65a9d7);
  120. background: -moz-linear-gradient(top, #5aafe8, #65a9d7);
  121. background: -ms-linear-gradient(top, #5aafe8, #65a9d7);
  122. background: -o-linear-gradient(top, #5aafe8, #65a9d7);
  123. }
  124. #treeroot div {
  125. margin: 5px 0px 10px 0px;
  126. text-align: center;
  127. vertical-align: middle;
  128. }
  129. #commonuse div,#mychoice div,#myflow div,#mytask div {
  130. margin: 5px 0px 5px 0px;
  131. text-align: center;
  132. vertical-align: middle;
  133. }
  134. .datalist div {
  135. margin: 4px 0px 4px 0px;
  136. text-align: center;
  137. vertical-align: middle;
  138. }
  139. #treeroot tree-node {
  140. background: #28597a;
  141. }
  142. #treeroot tree-node-hover {
  143. background: #28597a;
  144. }
  145. .custom .x-panel-body-default {
  146. background: transparent;
  147. }
  148. .custom .x-panel-header,.custom .x-window-header {
  149. height: 30px;
  150. border-top: 1px solid #96d1f8;
  151. background: #65a9d7;
  152. background: -webkit-gradient(linear, left top, left bottom, from(#ced3d9), to(#65a9d7) );
  153. background: -webkit-linear-gradient(top, #ced3d9, #65a9d7);
  154. background: -moz-linear-gradient(top, #ced3d9, #65a9d7);
  155. background: -ms-linear-gradient(top, #ced3d9, #65a9d7);
  156. background: -o-linear-gradient(top, #ced3d9, #65a9d7);
  157. }
  158. .selected {
  159. background: #d6657d;
  160. background: -webkit-gradient(linear, left top, left bottom, from(#e65965), to(#d6657d) );
  161. background: -webkit-linear-gradient(top, #e65965, #d6657d);
  162. background: -moz-linear-gradient(top, #e65965, #d6657d);
  163. background: -ms-linear-gradient(top, #e65965, #d6657d);
  164. background: -o-linear-gradient(top, #e65965, #d6657d);
  165. }
  166. .custom .x-tab-bar {
  167. zoom: 1;
  168. z-index: 6000;
  169. box-shadow: 0 0 10px black;
  170. font: 13px "Lucida Grande", Sans-Serif !important;
  171. border-top: 1px solid #96d1f8;
  172. background: #054773;
  173. background: -webkit-gradient(linear, left top, left bottom, from(#054773), to(#054773) );
  174. background: -webkit-linear-gradient(top, #054773, #054773);
  175. background: -moz-linear-gradient(top, #054773, #054773);
  176. background: -ms-linear-gradient(top, #054773, #054773);
  177. background: -o-linear-gradient(top, #054773, #054773);
  178. }
  179. .custom .x-tab-default-bottom {
  180. background: #65a9d7;
  181. background: -webkit-gradient(linear, left top, left bottom, from(#3d8abd), to(#65a9d7) );
  182. background: -webkit-linear-gradient(top, #3d8abd, #65a9d7);
  183. background: -moz-linear-gradient(top, #3d8abd, #65a9d7);
  184. background: -ms-linear-gradient(top, #3d8abd, #65a9d7);
  185. background: -o-linear-gradient(top, #3d8abd, #65a9d7);
  186. -webkit-box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  187. -moz-box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  188. box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  189. text-shadow: rgba(0, 0, 0, .4) 0 1px 0;
  190. }
  191. .custom .x-tab-default-bottom-active {
  192. background: #8eb6d1;
  193. background: -webkit-gradient(linear, left top, left bottom, from(#dfebf2), to(#8eb6d1) );
  194. background: -webkit-linear-gradient(top, #dfebf2, #8eb6d1);
  195. background: -moz-linear-gradient(top, #dfebf2, #8eb6d1);
  196. background: -ms-linear-gradient(top, #dfebf2, #8eb6d1);
  197. background: -o-linear-gradient(top, #dfebf2, #8eb6d1);
  198. -webkit-box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  199. -moz-box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  200. box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  201. text-shadow: rgba(0, 0, 0, .4) 0 1px 0;
  202. }
  203. .custom .x-tab button .x-tab-inner {
  204. font-size: 11px;
  205. color: black;
  206. }
  207. .custom .x-tab-active button .x-tab-inner {
  208. font-size: 11px;
  209. color: black;
  210. }
  211. .custom-box {
  212. border-top: 1px solid #d7eaf5;
  213. border-left: 2px solid #d7eaf5;
  214. border-right: 2px solid #d7eaf5;
  215. background: #79a2bd;
  216. background: -webkit-gradient(linear, left top, left bottom, from(#97cbed), to(#79a2bd) );
  217. background: -webkit-linear-gradient(top, #97cbed, #79a2bd);
  218. background: -moz-linear-gradient(top, #97cbed, #79a2bd);
  219. background: -ms-linear-gradient(top, #97cbed, #79a2bd);
  220. background: -o-linear-gradient(top, #97cbed, #79a2bd);
  221. -webkit-border-radius: 8px;
  222. -moz-border-radius: 8px;
  223. border-radius: 8px;
  224. -webkit-box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  225. -moz-box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  226. box-shadow: rgba(0, 0, 0, 1) 0 1px 0;
  227. text-shadow: rgba(0, 0, 0, .4) 0 1px 0;
  228. color: white;
  229. font-size: 14px;
  230. font-family: Georgia, serif;
  231. text-decoration: none;
  232. vertical-align: middle;
  233. }
  234. .custom-box .x-window-body {
  235. border: none;
  236. background: transparent;
  237. }
  238. .custom-box .x-btn {
  239. cursor: pointer;
  240. background: #5f8196;
  241. background: -webkit-gradient(linear, left top, left bottom, from(#8db1c4), to(#5f8196) );
  242. background: -webkit-linear-gradient(top, #8db1c4, #5f8196);
  243. background: -moz-linear-gradient(top, #8db1c4, #5f8196);
  244. background: -ms-linear-gradient(top, #8db1c4, #5f8196);
  245. background: -o-linear-gradient(top, #8db1c4, #5f8196);
  246. padding: 2px 8px;
  247. -webkit-border-radius: 5px;
  248. -moz-border-radius: 5px;
  249. border-radius: 5px;
  250. text-shadow: rgba(0, 0, 0, .4) 0 1px 0;
  251. color: white;
  252. font-size: 13px;
  253. font-family: Georgia, serif;
  254. text-decoration: none;
  255. vertical-align: middle;
  256. font-size: 13px;
  257. }