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.

257 lines
3.5KB

  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 #666;
  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: #545454;
  59. }
  60. .row.stats {
  61. padding: 5px 0;
  62. min-height: 20px;
  63. background: #545454;
  64. }
  65. .row.stats span {
  66. display: block;
  67. float: left;
  68. width: 25%;
  69. text-align: center;
  70. color: #aaa;
  71. }
  72. .row.titlebar {
  73. position: relative;
  74. display: table;
  75. padding: 0;
  76. height: 66px;
  77. }
  78. .titlebar a.inner {
  79. position: relative;
  80. display: table-cell;
  81. min-width: 220px;
  82. height: 66px;
  83. text-decoration: none;
  84. border: none;
  85. outline: none;
  86. padding: 15px 0 15px 15px;
  87. margin: 0;
  88. }
  89. .titlebar img {
  90. display: inline-block;
  91. float: left;
  92. margin-right: 15px;
  93. border: none;
  94. }
  95. .titlebar .title {
  96. display: inline-block;
  97. float: left;
  98. margin: 14px 0;
  99. padding: 0;
  100. max-width: 135px;
  101. overflow: hidden;
  102. }
  103. .titlebar .title h1,
  104. .titlebar .title h2 {
  105. display: block;
  106. margin: 0;
  107. padding: 0;
  108. color: white;
  109. text-align: left;
  110. line-height: 1;
  111. }
  112. .titlebar .title h1 {
  113. font-size: 27px;
  114. font-weight: 600;
  115. font-style: italic;
  116. }
  117. .titlebar .title h1 span {
  118. color: #ec3737;
  119. }
  120. .titlebar .title h2 {
  121. font-size: 11px;
  122. text-transform: uppercase;
  123. }
  124. .titlebar .menu {
  125. position: relative;
  126. display: table-cell;
  127. width: 100%;
  128. padding: 15px;
  129. margin: 8px 0;
  130. vertical-align: middle;
  131. text-align: right;
  132. }
  133. .titlebar a {
  134. display: inline-block;
  135. height: 25px;
  136. line-height: 25px;
  137. padding-left: 5px;
  138. color: #aaa;
  139. text-decoration: none;
  140. }
  141. .titlebar a:hover {
  142. color: white;
  143. }
  144. .breadcrumb a {
  145. display: inline;
  146. color: white;
  147. margin-right: 10px;
  148. line-height: 1.3;
  149. text-decoration: none;
  150. }
  151. .list {
  152. position: relative;
  153. border-collapse: collapse;
  154. border: none;
  155. margin: 0;
  156. }
  157. .list th,
  158. .list td {
  159. padding: 5px 15px;
  160. text-align: left;
  161. vertical-align: middle;
  162. }
  163. .list th {
  164. color: #aaa;
  165. vertical-align: top;
  166. padding-top: 5px;
  167. padding-bottom: 5px;
  168. font-weight: normal;
  169. word-break: none;
  170. }
  171. .list tr.odd td,
  172. .list tr.odd th {
  173. background-color: #3e3e3e;
  174. }
  175. .list th a {
  176. color: inherit;
  177. text-decoration: none;
  178. }
  179. .list th.center,
  180. .list td.center {
  181. text-align: center !important;
  182. }
  183. .list th.right,
  184. .list td.right {
  185. text-align: right !important;
  186. }
  187. .list a {
  188. color: white;
  189. }
  190. .list a:hover {
  191. color: #bbb;
  192. }
  193. .pagination a {
  194. padding: 5px;
  195. color: #aaa;
  196. }
  197. .pagination a.active {
  198. color: white;
  199. }
  200. .footer {
  201. margin-top: 10px;
  202. min-height: 20px;
  203. }
  204. .footer a {
  205. text-decoration: none;
  206. color: #444;
  207. }
  208. .footer a.left {
  209. float: left;
  210. margin-right: 10px;
  211. }
  212. .footer a.right {
  213. float: right;
  214. margin-left: 10px;
  215. }