black.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. /* Counter */
  93. .unread-counter {
  94. color: #bbb;
  95. }
  96. /* Category label */
  97. .category {
  98. color: #efefef;
  99. background-color: #333;
  100. border-color: #444;
  101. }
  102. .category a {
  103. color: #999;
  104. }
  105. .category a:hover,
  106. .category a:focus {
  107. color: #aaa;
  108. }
  109. /* Pagination */
  110. .pagination a {
  111. color: #aaa;
  112. }
  113. .pagination-bottom {
  114. border-color: #333;
  115. }
  116. /* List view */
  117. .item {
  118. border-color: #666;
  119. padding: 4px;
  120. }
  121. .item.current-item {
  122. border-width: 2px;
  123. border-color: rgba(82, 168, 236, 0.8);
  124. box-shadow: 0 0 8px rgba(82, 168, 236, 0.6);
  125. }
  126. .item-title a {
  127. font-weight: 400;
  128. }
  129. .item-status-read .item-title a {
  130. color: #666;
  131. }
  132. .item-status-read .item-title a:focus,
  133. .item-status-read .item-title a:hover {
  134. color: rgba(82, 168, 236, 0.6);
  135. }
  136. .item-meta a:hover,
  137. .item-meta a:focus {
  138. color: #aaa;
  139. }
  140. .item-meta li:after {
  141. color: #ddd;
  142. }
  143. /* Entry view */
  144. .entry header {
  145. border-color: #333;
  146. }
  147. .entry header h1 a {
  148. color: #bbb;
  149. }
  150. .entry-content,
  151. .entry-content p, ul {
  152. color: #999;
  153. }
  154. .entry-content pre,
  155. .entry-content code {
  156. color: #fff;
  157. background: #555;
  158. border-color: #888;
  159. }
  160. .entry-enclosure {
  161. border-color: #333;
  162. }