black.css 2.6 KB

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