black.css 2.9 KB

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