A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
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.

216 lines
2.9KB

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