MCC/b2uploader: b2uploader - backup to server - SVN.BY: Go Git Service

b2uploader - backup to server

print.css 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. html, body, div, span, applet, object, iframe,
  2. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  3. a, abbr, acronym, address, big, cite, code,
  4. del, dfn, em, img, ins, kbd, q, s, samp,
  5. small, strike, strong, sub, sup, tt, var,
  6. b, u, i, center,
  7. dl, dt, dd, ol, ul, li,
  8. fieldset, form, label, legend,
  9. table, caption, tbody, tfoot, thead, tr, th, td,
  10. article, aside, canvas, details, embed,
  11. figure, figcaption, footer, header, hgroup,
  12. menu, nav, output, ruby, section, summary,
  13. time, mark, audio, video {
  14. padding: 0;
  15. margin: 0;
  16. font: inherit;
  17. font-size: 100%;
  18. vertical-align: baseline;
  19. border: 0;
  20. }
  21. /* HTML5 display-role reset for older browsers */
  22. article, aside, details, figcaption, figure,
  23. footer, header, hgroup, menu, nav, section {
  24. display: block;
  25. }
  26. body {
  27. line-height: 1;
  28. }
  29. ol, ul {
  30. list-style: none;
  31. }
  32. blockquote, q {
  33. quotes: none;
  34. }
  35. blockquote:before, blockquote:after,
  36. q:before, q:after {
  37. content: '';
  38. content: none;
  39. }
  40. table {
  41. border-spacing: 0;
  42. border-collapse: collapse;
  43. }
  44. body {
  45. font-family: 'Helvetica Neue', Helvetica, Arial, serif;
  46. font-size: 13px;
  47. line-height: 1.5;
  48. color: #000;
  49. }
  50. a {
  51. font-weight: bold;
  52. color: #d5000d;
  53. }
  54. header {
  55. padding-top: 35px;
  56. padding-bottom: 10px;
  57. }
  58. header h1 {
  59. font-size: 48px;
  60. font-weight: bold;
  61. line-height: 1.2;
  62. color: #303030;
  63. letter-spacing: -1px;
  64. }
  65. header h2 {
  66. font-size: 24px;
  67. font-weight: normal;
  68. line-height: 1.3;
  69. color: #aaa;
  70. letter-spacing: -1px;
  71. }
  72. #downloads {
  73. display: none;
  74. }
  75. #main_content {
  76. padding-top: 20px;
  77. }
  78. code, pre {
  79. margin-bottom: 30px;
  80. font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal;
  81. font-size: 12px;
  82. color: #222;
  83. }
  84. code {
  85. padding: 0 3px;
  86. }
  87. pre {
  88. padding: 20px;
  89. overflow: auto;
  90. border: solid 1px #ddd;
  91. }
  92. pre code {
  93. padding: 0;
  94. }
  95. ul, ol, dl {
  96. margin-bottom: 20px;
  97. }
  98. /* COMMON STYLES */
  99. table {
  100. width: 100%;
  101. border: 1px solid #ebebeb;
  102. }
  103. th {
  104. font-weight: 500;
  105. }
  106. td {
  107. font-weight: 300;
  108. text-align: center;
  109. border: 1px solid #ebebeb;
  110. }
  111. form {
  112. padding: 20px;
  113. background: #f2f2f2;
  114. }
  115. /* GENERAL ELEMENT TYPE STYLES */
  116. h1 {
  117. font-size: 2.8em;
  118. }
  119. h2 {
  120. margin-bottom: 8px;
  121. font-size: 22px;
  122. font-weight: bold;
  123. color: #303030;
  124. }
  125. h3 {
  126. margin-bottom: 8px;
  127. font-size: 18px;
  128. font-weight: bold;
  129. color: #d5000d;
  130. }
  131. h4 {
  132. font-size: 16px;
  133. font-weight: bold;
  134. color: #303030;
  135. }
  136. h5 {
  137. font-size: 1em;
  138. color: #303030;
  139. }
  140. h6 {
  141. font-size: .8em;
  142. color: #303030;
  143. }
  144. p {
  145. margin-bottom: 20px;
  146. font-weight: 300;
  147. }
  148. a {
  149. text-decoration: none;
  150. }
  151. p a {
  152. font-weight: 400;
  153. }
  154. blockquote {
  155. padding: 0 0 0 30px;
  156. margin-bottom: 20px;
  157. font-size: 1.6em;
  158. border-left: 10px solid #e9e9e9;
  159. }
  160. ul li {
  161. padding-left: 20px;
  162. list-style-position: inside;
  163. list-style: disc;
  164. }
  165. ol li {
  166. padding-left: 3px;
  167. list-style-position: inside;
  168. list-style: decimal;
  169. }
  170. dl dd {
  171. font-style: italic;
  172. font-weight: 100;
  173. }
  174. footer {
  175. padding-top: 20px;
  176. padding-bottom: 30px;
  177. margin-top: 40px;
  178. font-size: 13px;
  179. color: #aaa;
  180. }
  181. footer a {
  182. color: #666;
  183. }
  184. /* MISC */
  185. .clearfix:after {
  186. display: block;
  187. height: 0;
  188. clear: both;
  189. visibility: hidden;
  190. content: '.';
  191. }
  192. .clearfix {display: inline-block;}
  193. * html .clearfix {height: 1%;}
  194. .clearfix {display: block;}