default.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. html
  2. {
  3. margin: 0;
  4. padding: 0;
  5. }
  6. body
  7. {
  8. margin: 0;
  9. padding: 0;
  10. }
  11. #ribbon
  12. {
  13. min-width: 930px;
  14. width: 100%;
  15. height: 102px;
  16. font-size: 12px;
  17. font-family: 微软雅黑, 宋体;
  18. background-image: url(images/bg.gif);
  19. cursor: default;
  20. }
  21. #ribbon .group
  22. {
  23. float: left;
  24. text-align:center;
  25. }
  26. #ribbon .content
  27. {
  28. height: 76px;
  29. padding: 3px;
  30. }
  31. #ribbon .content .bigtool
  32. {
  33. float: left;
  34. height: 66px;
  35. _height: 69px;
  36. margin: 2px;
  37. min-width: 40px;
  38. padding: 7px 3px 0px 3px;
  39. _padding: 3px 3px 0px 3px;
  40. text-align: center;
  41. border: solid 1px Transparent;
  42. _border: solid 1px #EFF5FB;
  43. border-radius: 2px;
  44. }
  45. #ribbon .content .active
  46. {
  47. border: solid 1px #e2b45c;
  48. background-image: url(images/toolactive.gif);
  49. }
  50. #ribbon .content .selected
  51. {
  52. border: solid 1px #c2943c;
  53. background-image: url(images/toolselected.gif);
  54. }
  55. #ribbon .content .disabled
  56. {
  57. color: Gray;
  58. }
  59. #ribbon .content .bigtool img
  60. {
  61. width: 32px;
  62. height: 32px;
  63. }
  64. #ribbon .content .bigtool span
  65. {
  66. display: block;
  67. padding-top: 5px;
  68. _padding-top: 2px;
  69. }
  70. #ribbon .content .bigtool .dropdown
  71. {
  72. color: Gray;
  73. font-size: 9px;
  74. padding-top: 2px;
  75. _padding-top: 0px;
  76. line-height: 10px;
  77. }
  78. #ribbon .content .bigtool .dropdownlist
  79. {
  80. min-width: 250px;
  81. border: solid 1px Gray;
  82. border-radius: 2px;
  83. box-shadow: 2px 2px 0px 0px rgba(0, 0, 0, 0.2);
  84. background-color: White;
  85. position: absolute;
  86. z-index: 9999999;
  87. display: none;
  88. }
  89. #ribbon .content .bigtool .dropdownlist .listitem
  90. {
  91. text-align: left;
  92. font-size: 12px;
  93. padding: 5px;
  94. margin: 3px;
  95. border: solid 1px Transparent;
  96. }
  97. #ribbon .content .bigtool .dropdownlist .preview
  98. {
  99. font-weight: bold;
  100. color: #444444;
  101. }
  102. #ribbon .content .bigtool .dropdownlist .listitem div
  103. {
  104. border: solid 1px Gray;
  105. font-weight: normal;
  106. color: Black;
  107. padding: 10px;
  108. margin: 2px 0px;
  109. }
  110. #ribbon .content .bigtool .dropdownlist .listitem span
  111. {
  112. display: inline;
  113. }
  114. #ribbon .content .bigtool .dropdownlist .active
  115. {
  116. border: solid 1px #e2b45c;
  117. border-radius: 2px;
  118. background-image: url(images/toolactive.gif);
  119. }
  120. #ribbon .content .bigtool .dropdownlist .selected
  121. {
  122. border: solid 1px #c2943c;
  123. border-radius: 2px;
  124. background-image: url(images/toolselected.gif);
  125. }
  126. #ribbon .content .bigtool .dropdownlist .listitemseperator
  127. {
  128. border-top: solid 1px Gray;
  129. line-height: 0;
  130. font-size: 0;
  131. padding: 0;
  132. margin: 3px;
  133. }
  134. #ribbon .footer
  135. {
  136. height: 20px;
  137. line-height: 20px;
  138. _height: 18px;
  139. _line-height: 18px;
  140. color: Gray;
  141. text-align:center;
  142. }
  143. #ribbon .seperator
  144. {
  145. float: left;
  146. width: 3px;
  147. height: 102px;
  148. background-image: url(images/groupborder.gif);
  149. background-repeat: no-repeat;
  150. }
  151. #frame
  152. {
  153. margin: 0;
  154. padding: 0;
  155. border: 0;
  156. display: block;
  157. }
  158. #screen
  159. {
  160. height:78px;
  161. background-image: url(images/screenborder.gif);
  162. background-repeat: repeat-x;
  163. line-height:85px;
  164. text-align:center;
  165. border:1px solid #eee;
  166. font-size:34px;
  167. font-weight:bold;
  168. overflow:hidden;
  169. display: none;
  170. }
  171. #loading
  172. {
  173. width:250px;
  174. height:100px;
  175. line-height:100px;
  176. font-size:36px;
  177. font-weight:bold;
  178. border:5px solid #666;
  179. background-image:url(images/loading.gif);
  180. background-repeat:no-repeat;
  181. padding-left:100px;
  182. display:none;
  183. background-color:White;
  184. }