A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

241 行
3.3KB

  1. html {
  2. min-width: 240px;
  3. background: #333;
  4. color: #fff;
  5. font-family: Arial, Helvetica, sans-serif;
  6. text-align: center;
  7. }
  8. body {
  9. max-width: 1000px;
  10. padding: 15px;
  11. margin: 0 auto;
  12. line-height: 1.3;
  13. }
  14. p {
  15. margin: 10px 0;
  16. }
  17. pre {
  18. color: #a2a2a2;
  19. margin: 10px 0;
  20. word-break: break-all;
  21. white-space: pre-line;
  22. }
  23. hr.textonly {
  24. display: none;
  25. }
  26. .clearfix {
  27. clear: both;
  28. }
  29. .wrapper {
  30. position: relative;
  31. margin: 0 auto;
  32. width: 100%;
  33. text-align: left;
  34. }
  35. .row {
  36. padding: 10px 15px;
  37. border: outset 1px #555;
  38. background: #444;
  39. }
  40. .row.odd {
  41. background-color: #3e3e3e;
  42. }
  43. .row.page {
  44. padding: 0;
  45. }
  46. .row.spacer {
  47. padding: 0;
  48. height: 10px;
  49. background: transparent !important;
  50. border: none;
  51. }
  52. .row.pagination {
  53. text-align: center;
  54. padding: 5px 15px;
  55. }
  56. .row.breadcrumb {
  57. padding: 5px 15px;
  58. background: #3e3e3e;
  59. border-color: #4e4e4e;
  60. }
  61. .row.stats {
  62. padding: 5px 0;
  63. min-height: 20px;
  64. background: #3e3e3e;
  65. border-color: #4e4e4e;
  66. }
  67. .row.stats span {
  68. display: block;
  69. float: left;
  70. width: 25%;
  71. text-align: center;
  72. color: #aaa;
  73. }
  74. .row.titlebar {
  75. position: relative;
  76. min-height: 52px;
  77. padding: 0;
  78. }
  79. .titlebar .logo {
  80. position: absolute;
  81. top: 0;
  82. left: 0;
  83. text-decoration: none;
  84. margin: 10px 15px;
  85. height: 32px;
  86. border: none;
  87. outline: none;
  88. }
  89. .titlebar .logo img {
  90. position: absolute;
  91. top: 0;
  92. left: 0;
  93. min-width: 32px;
  94. min-height: 32px;
  95. margin-right: 10px;
  96. border: none;
  97. }
  98. .titlebar .logo h1 {
  99. position: relative;
  100. margin: 0;
  101. padding: 0;
  102. padding-left: 42px;
  103. color: white;
  104. display: inline;
  105. text-align: left;
  106. height: 32px;
  107. line-height: 32px;
  108. font-size: 28px;
  109. font-weight: 600;
  110. font-style: italic;
  111. }
  112. .titlebar .logo h1 span {
  113. color: #ec3737;
  114. }
  115. .titlebar .menu {
  116. position: relative;
  117. padding: 10px 15px;
  118. min-height: 32px;
  119. text-align: right;
  120. vertical-align: middle;
  121. }
  122. .titlebar .menu a {
  123. display: inline;
  124. line-height: 32px;
  125. color: #aaa;
  126. text-decoration: none;
  127. }
  128. .titlebar a:hover {
  129. color: white;
  130. }
  131. .breadcrumb a {
  132. display: inline;
  133. color: white;
  134. margin-right: 10px;
  135. line-height: 1.3;
  136. text-decoration: none;
  137. }
  138. .list {
  139. position: relative;
  140. border-collapse: collapse;
  141. border: none;
  142. margin: 0;
  143. }
  144. .list th,
  145. .list td {
  146. padding: 5px 15px;
  147. text-align: left;
  148. vertical-align: middle;
  149. }
  150. .list th {
  151. color: #aaa;
  152. vertical-align: top;
  153. padding-top: 5px;
  154. padding-bottom: 5px;
  155. font-weight: normal;
  156. word-break: none;
  157. }
  158. .list tr.odd td,
  159. .list tr.odd th {
  160. background-color: #3e3e3e;
  161. }
  162. .list th a {
  163. color: inherit;
  164. text-decoration: none;
  165. }
  166. .list th.center,
  167. .list td.center {
  168. text-align: center !important;
  169. }
  170. .list th.right,
  171. .list td.right {
  172. text-align: right !important;
  173. }
  174. .list a {
  175. color: white;
  176. }
  177. .list a:hover {
  178. color: #bbb;
  179. }
  180. .pagination a {
  181. padding: 5px;
  182. color: #aaa;
  183. }
  184. .pagination a.active {
  185. color: white;
  186. }
  187. .footer {
  188. margin-top: 10px;
  189. min-height: 20px;
  190. }
  191. .footer a {
  192. text-decoration: none;
  193. color: #444;
  194. }
  195. .footer a.left {
  196. float: left;
  197. margin-right: 10px;
  198. }
  199. .footer a.right {
  200. float: right;
  201. margin-left: 10px;
  202. }