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.

259 lines
3.6KB

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