black.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. /* Layout */
  2. body {
  3. background: #222;
  4. color: #efefef;
  5. }
  6. h1, h2, h3 {
  7. color: #aaa;
  8. }
  9. a {
  10. color: #aaa;
  11. }
  12. a:focus,
  13. a:hover {
  14. color: #ddd;
  15. }
  16. /* Header and main menu */
  17. .header li {
  18. border-color: #333;
  19. }
  20. .header a {
  21. color: #ddd;
  22. font-weight: 400;
  23. }
  24. .header .active a {
  25. font-weight: 400;
  26. color: #9b9494;
  27. }
  28. .header a:focus,
  29. .header a:hover {
  30. color: rgba(82, 168, 236, 0.85);
  31. }
  32. /* Page header */
  33. .page-header h1 {
  34. border-color: #333;
  35. }
  36. /* Logo */
  37. .logo a:hover span {
  38. color: #555;
  39. }
  40. /* Tables */
  41. table, th, td {
  42. border: 1px solid #555;
  43. }
  44. th {
  45. background: #333;
  46. color: #aaa;
  47. font-weight: 400;
  48. }
  49. tr:hover {
  50. background-color: #333;
  51. color: #aaa;
  52. }
  53. /* Forms */
  54. input[type="search"],
  55. input[type="url"],
  56. input[type="password"],
  57. input[type="text"] {
  58. border: 1px solid #555;
  59. background: #333;
  60. color: #ccc;
  61. }
  62. input[type="search"]:focus,
  63. input[type="url"]:focus,
  64. input[type="password"]:focus,
  65. input[type="text"]:focus {
  66. color: #efefef;
  67. border-color: rgba(82, 168, 236, 0.8);
  68. box-shadow: 0 0 8px rgba(82, 168, 236, 0.6);
  69. }
  70. /* Buttons */
  71. .button-primary {
  72. border-color: #444;
  73. background: #333;
  74. color: #efefef;
  75. }
  76. .button-primary:hover,
  77. .button-primary:focus {
  78. border-color: #888;
  79. background: #555;
  80. }
  81. /* Alerts */
  82. .alert,
  83. .alert-success,
  84. .alert-error,
  85. .alert-info,
  86. .alert-normal {
  87. color: #efefef;
  88. background-color: #333;
  89. border-color: #444;
  90. }
  91. /* Panel */
  92. .panel {
  93. background: #333;
  94. border-color: #555;
  95. color: #9b9b9b;
  96. }
  97. /* Modals */
  98. #modal-left {
  99. background: #333;
  100. color: #efefef;
  101. box-shadow: 0 0 10px rgba(82, 168, 236, 0.6);
  102. }
  103. /* Keyboard Shortcuts */
  104. .keyboard-shortcuts li {
  105. color: #9b9b9b;
  106. }
  107. /* Counters */
  108. .unread-counter-wrapper,
  109. .error-feeds-counter-wrapper {
  110. color: #bbb;
  111. }
  112. /* Category label */
  113. .category {
  114. color: #efefef;
  115. background-color: #333;
  116. border-color: #444;
  117. }
  118. .category a {
  119. color: #999;
  120. }
  121. .category a:hover,
  122. .category a:focus {
  123. color: #aaa;
  124. }
  125. /* Pagination */
  126. .pagination a {
  127. color: #aaa;
  128. }
  129. .pagination-bottom {
  130. border-color: #333;
  131. }
  132. /* List view */
  133. .item {
  134. border-color: #666;
  135. padding: 4px;
  136. }
  137. .item.current-item {
  138. border-width: 2px;
  139. border-color: rgba(82, 168, 236, 0.8);
  140. box-shadow: 0 0 8px rgba(82, 168, 236, 0.6);
  141. }
  142. .item-title a {
  143. font-weight: 400;
  144. }
  145. .item-status-read .item-title a {
  146. color: #666;
  147. }
  148. .item-status-read .item-title a:focus,
  149. .item-status-read .item-title a:hover {
  150. color: rgba(82, 168, 236, 0.6);
  151. }
  152. .item-meta a:hover,
  153. .item-meta a:focus {
  154. color: #aaa;
  155. }
  156. .item-meta li:after {
  157. color: #ddd;
  158. }
  159. /* Feeds list */
  160. article.feed-parsing-error {
  161. background-color: #343434;
  162. }
  163. .parsing-error {
  164. color: #eee;
  165. }
  166. /* Entry view */
  167. .entry header {
  168. border-color: #333;
  169. }
  170. .entry header h1 a {
  171. color: #bbb;
  172. }
  173. .entry-content,
  174. .entry-content p, ul {
  175. color: #999;
  176. }
  177. .entry-content pre,
  178. .entry-content code {
  179. color: #fff;
  180. background: #555;
  181. border-color: #888;
  182. }
  183. .entry-content q {
  184. color: #777;
  185. }
  186. .entry-enclosure {
  187. border-color: #333;
  188. }