Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Office.css 4.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /*****************************************************************/
  2. /********************** Office CSS 程式庫 ***********************/
  3. /********************** 版本: 1.0.2.0 *************************/
  4. /*****************************************************************/
  5. /******************************************************************
  6. 基底
  7. ******************************************************************/
  8. body {
  9. margin: 0;
  10. padding: 0;
  11. border: 0;
  12. height: 100%;
  13. max-height: 100%;
  14. }
  15. /******************************************************************
  16. 印刷樣式
  17. ******************************************************************/
  18. body {
  19. font-family: "Segoe WP", "Segoe UI", "Arial", sans-serif;
  20. font-size: 12px;
  21. color: #262626;
  22. }
  23. h1 {
  24. font-family: "Segoe WP Light", "Segoe UI", "Arial", sans-serif;
  25. font-size: 22px;
  26. line-height: 26px;
  27. font-weight: 500;
  28. }
  29. h2, h3, h4, h5, h6, th {
  30. font-family: "Segoe WP Semibold", "Segoe UI", "Arial", sans-serif;
  31. }
  32. h2 {
  33. font-size: 18px;
  34. line-height: 22px;
  35. font-weight: 600;
  36. }
  37. h3, h4, h5, h6 {
  38. font-size: 13px;
  39. line-height: 16px;
  40. }
  41. h3 {
  42. font-weight: 600;
  43. }
  44. h4, h5, h6 {
  45. font-weight: normal;
  46. }
  47. form, input, select, button, textarea {
  48. font-family: "Segoe WP", "Segoe UI", "Arial", sans-serif;
  49. font-size: 12px;
  50. line-height: 16px;
  51. }
  52. /******************************************************************
  53. 一般
  54. ******************************************************************/
  55. a {
  56. color: #336699;
  57. text-decoration: none;
  58. }
  59. a:focus, a:hover, a:active {
  60. text-decoration: underline;
  61. }
  62. ul {
  63. margin-left: 1.4em;
  64. padding: 0;
  65. }
  66. hr {
  67. border: none;
  68. height: 1px;
  69. color: #ebebeb;
  70. background-color: #ebebeb;
  71. clear: both;
  72. }
  73. img {
  74. border: none;
  75. }
  76. blockquote {
  77. margin-left: 1.4em;
  78. }
  79. /******************************************************************
  80. 表單
  81. ******************************************************************/
  82. form {
  83. clear: both;
  84. }
  85. label {
  86. margin-right: 3px;
  87. }
  88. input, textarea, select, button {
  89. margin: 0 0 5px 0;
  90. padding: 3px;
  91. -webkit-box-sizing: border-box;
  92. -moz-box-sizing: border-box;
  93. box-sizing: border-box;
  94. }
  95. input[type="checkbox"], input[type="radio"] {
  96. margin-right: 4px;
  97. }
  98. input[type="checkbox"], input[type="radio"],
  99. input[type="file"], input[type="image"] {
  100. padding: 0;
  101. }
  102. button, textarea, select,
  103. input:not([type]),
  104. input[type="button"],
  105. input[type="color"],
  106. input[type="date"],
  107. input[type="datetime"],
  108. input[type="datetime-local"],
  109. input[type="email"],
  110. input[type="month"],
  111. input[type="number"],
  112. input[type="password"],
  113. input[type="reset"],
  114. input[type="search"],
  115. input[type="submit"],
  116. input[type="tel"],
  117. input[type="text"],
  118. input[type="time"],
  119. input[type="url"],
  120. input[type="week"] {
  121. border: 1px solid #cccccc;
  122. background-color: white;
  123. }
  124. button, input[type="button"],
  125. input[type="submit"], input[type="reset"] {
  126. padding-left: 10px;
  127. padding-right: 10px;
  128. text-align: center;
  129. }
  130. button:hover:enabled,
  131. input[type="button"]:hover:enabled,
  132. input[type="submit"]:hover:enabled,
  133. input[type="reset"]:hover:enabled {
  134. border-color: #7eB4ea;
  135. background-color: #e5f1fc;
  136. }
  137. button:active:enabled,
  138. input[type="button"]:active:enabled,
  139. input[type="submit"]:active:enabled,
  140. input[type="reset"]:active:enabled {
  141. border-color: #569de5;
  142. background-color: #cee5fc;
  143. }
  144. /******************************************************************
  145. 捲軸
  146. ******************************************************************/
  147. body {
  148. scrollbar-base-color: white;
  149. scrollbar-arrow-color: #ababab;
  150. scrollbar-highlight-color: #ababab;
  151. scrollbar-darkshadow-color: white;
  152. scrollbar-track-color: white;
  153. scrollbar-face-color: white;
  154. }