A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

256 Zeilen
3.5KB

  1. html {
  2. color: #000;
  3. background-image: url(../../img/theme/oldpunch/bg.png);
  4. background-color: #bbb;
  5. }
  6. .row {
  7. background-color: #fff;
  8. border-color: #888;
  9. }
  10. .row.odd {
  11. background-color: #eee;
  12. }
  13. .row.breadcrumb {
  14. background: #f2f2f2;
  15. border-top-color: #fff;
  16. }
  17. .row.stats {
  18. background: #14f;
  19. }
  20. .row.stats span {
  21. color: #fff;
  22. }
  23. .row.titlebar {
  24. padding: 0;
  25. padding-right: 15px;
  26. height: 88px;
  27. background-image: url(../../img/theme/oldpunch/navbg.gif);
  28. background-repeat: repeat-x;
  29. border-bottom-color: #eee;
  30. }
  31. .row.titlebar a.inner {
  32. width: 240px;
  33. height: 88px;
  34. top: 0;
  35. left: 0;
  36. }
  37. .row.titlebar img {
  38. margin-right: 0;
  39. }
  40. .row.titlebar .title {
  41. margin: 26px 0;
  42. }
  43. .row.titlebar .title h1,
  44. .row.titlebar .title h2 {
  45. color: #333;
  46. }
  47. .titlebar .menu {
  48. margin-top: 19px;
  49. margin-bottom: 19px;
  50. }
  51. .titlebar ul li a {
  52. color: #333;
  53. font-size: 12px;
  54. text-decoration: none;
  55. }
  56. .titlebar ul li a:hover {
  57. color: #14f;
  58. text-decoration: underline;
  59. }
  60. .breadcrumb a {
  61. color: #333;
  62. }
  63. .row.highlights {
  64. border-color: #bbb;
  65. }
  66. body.highlights .details {
  67. background: #eee;
  68. border-right-color: #fff;
  69. }
  70. body.highlights h2 {
  71. color: #111;
  72. border-bottom-color: #333;
  73. }
  74. body.highlights p {
  75. color: #111;
  76. }
  77. .row.subforum {
  78. border-bottom-color: #eee;
  79. }
  80. .row.lastThread {
  81. border-top-color: #fff;
  82. }
  83. .row.subforum h3 a,
  84. .row.lastThread h4 a {
  85. color: #333;
  86. }
  87. .row.subforum span,
  88. .row.lastThread span {
  89. color: #666;
  90. }
  91. .row.lastThread {
  92. background: #eee;
  93. }
  94. .list th {
  95. background-color: #26f;
  96. color: #fff;
  97. }
  98. .list tr.odd td,
  99. .list tr.odd th {
  100. background-color: #f5f5f5;
  101. }
  102. .list a {
  103. color: #333;
  104. }
  105. .list a:hover {
  106. color: #14f;
  107. }
  108. .pagination a {
  109. color: #417394;
  110. }
  111. .pagination a.active {
  112. color: #444;
  113. }
  114. .row.thread a {
  115. color: #666;
  116. }
  117. .row.thread a.main {
  118. color: #222;
  119. }
  120. .row.postInfo {
  121. border-bottom-color: #eee;
  122. }
  123. .row.postInfo.hide-backgrounds {
  124. background-color: #26f;
  125. }
  126. .row.postInfo {
  127. color: #fff;
  128. }
  129. .row.postInfo .userForeground .date {
  130. color: #fff;
  131. }
  132. .row.post {
  133. background: #fff;
  134. border-top-color: #fff;
  135. }
  136. .post .postContent .quote {
  137. background: #bdf;
  138. border-color: #888;
  139. }
  140. .post .postContent .quote a.user {
  141. background-color: #ace;
  142. border: none;
  143. color: #05a;
  144. }
  145. .post .postContent .blockquote {
  146. background-color: #bdf;
  147. border: none;
  148. }
  149. .post .postContent a {
  150. color: #05a;
  151. }
  152. .post .postContent a.smart {
  153. background: #bdf;
  154. border-color: #888;
  155. }
  156. .post .postContent a.smart .title,
  157. .post .postContent a.smart .desc {
  158. background-color: #bdf;
  159. border-color: #888;
  160. color: #05a;
  161. }
  162. .post .postContent a.smart .desc {
  163. color: #000;
  164. }
  165. .querybox {
  166. border-color: #ccc;
  167. }
  168. .querybox .inputwrapper,
  169. .querybox .buttonwrapper {
  170. background: #eee;
  171. }
  172. .querybox .buttonwrapper input {
  173. border-left-color: #ccc;
  174. color: #333;
  175. }
  176. .row.search.message {
  177. color: #333;
  178. }
  179. .row.search.results a {
  180. color: #333;
  181. }
  182. .row.event a {
  183. color: #05a;
  184. }
  185. .footer a {
  186. color: #666;
  187. }
  188. @media only screen and (max-width: 635px) {
  189. .titlebar {
  190. padding: 0 !important;
  191. }
  192. .titlebar a.inner {
  193. width: auto !important;
  194. margin-top: 0 !important;
  195. margin-bottom: 0 !important;
  196. }
  197. .titlebar .menu {
  198. padding: 10px 0;
  199. margin-top: 0 !important;
  200. margin-right: 0 !important;
  201. margin-bottom: 0 !important;
  202. background-color: #f5f5f5;
  203. border-top: solid 1px #ddd;
  204. }
  205. }