black.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  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. /* Counter */
  108. .unread-counter-wrapper {
  109. color: #bbb;
  110. }
  111. /* Category label */
  112. .category {
  113. color: #efefef;
  114. background-color: #333;
  115. border-color: #444;
  116. }
  117. .category a {
  118. color: #999;
  119. }
  120. .category a:hover,
  121. .category a:focus {
  122. color: #aaa;
  123. }
  124. /* Pagination */
  125. .pagination a {
  126. color: #aaa;
  127. }
  128. .pagination-bottom {
  129. border-color: #333;
  130. }
  131. /* List view */
  132. .item {
  133. border-color: #666;
  134. padding: 4px;
  135. }
  136. .item.current-item {
  137. border-width: 2px;
  138. border-color: rgba(82, 168, 236, 0.8);
  139. box-shadow: 0 0 8px rgba(82, 168, 236, 0.6);
  140. }
  141. .item-title a {
  142. font-weight: 400;
  143. }
  144. .item-status-read .item-title a {
  145. color: #666;
  146. }
  147. .item-status-read .item-title a:focus,
  148. .item-status-read .item-title a:hover {
  149. color: rgba(82, 168, 236, 0.6);
  150. }
  151. .item-meta a:hover,
  152. .item-meta a:focus {
  153. color: #aaa;
  154. }
  155. .item-meta li:after {
  156. color: #ddd;
  157. }
  158. /* Feeds list */
  159. article.feed-parsing-error {
  160. background-color: #343434;
  161. }
  162. .parsing-error {
  163. color: #eee;
  164. }
  165. /* Entry view */
  166. .entry header {
  167. border-color: #333;
  168. }
  169. .entry header h1 a {
  170. color: #bbb;
  171. }
  172. .entry-content,
  173. .entry-content p, ul {
  174. color: #999;
  175. }
  176. .entry-content pre,
  177. .entry-content code {
  178. color: #fff;
  179. background: #555;
  180. border-color: #888;
  181. }
  182. .entry-content q {
  183. color: #777;
  184. }
  185. .entry-enclosure {
  186. border-color: #333;
  187. }