Advertisement
Guest User

Untitled

a guest
Dec 26th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.42 KB | None | 0 0
  1. /* Demain_Dark theme for leftypol.org adapted from tomorrow theme for 4chan*/
  2. /* Work in progress*/
  3. /* General */
  4. body {
  5. background: #1d1f21 url('img/fade-yotsuba.png') repeat-x 50% 0%;
  6. color: #ACACAC;
  7. font-size: 11pt;
  8. font-family: liberation.sans
  9. }
  10. /* Link colors */
  11. a:link, a:visited, .intro a.email span.name {
  12. color: #81a2be;
  13. }
  14. a:hover, .intro a.post_no:hover {
  15. color: #cc6666;
  16. }
  17. /* Board title and subtitle */
  18. header div.subtitle, h1 {
  19. color: indianred;
  20. }
  21. /* Post number*/
  22. a.post_no {
  23. color: #c5c8c6;
  24. }
  25. /* Replies */
  26. /* Background color and border */
  27. div.post.reply {
  28. background: #282A2E;
  29. border-color: #373b41;
  30. border-style: solid;
  31. border-width: 0.8px;
  32. border-radius: 5px;
  33. }
  34. div.post.reply.highlighted {
  35. background: #282A2E;
  36. border-color: #5f89ac;
  37. border-style: solid;
  38. border-width: 0.8px;
  39. border-radius: 5px;
  40. }
  41. div.post.reply div.body a {
  42. color: #5f89ac;
  43. }
  44. .intro span.subject {
  45. color: #b294bb;
  46. }
  47. /* Grenntext */
  48. span.quote {
  49. color: #b5bd68
  50. }
  51. /* Catalog grids */
  52. /* Background color and green border */
  53. .thread.grid-li.grid-size-vsmall, .thread.grid-li.grid-size-vsmall:hover,
  54. .thread.grid-li.grid-size-small, .thread.grid-li.grid-size-small:hover,
  55. .thread.grid-li.grid-size-large, .thread.grid-li.grid-size-large:hover {
  56. background-color: #282A2E;
  57. border: 1px solid #373b41;
  58. }
  59. /* Posting form */
  60. /* Field names */
  61. form table tr th {
  62. background: #282A2E;
  63. color: #ACACAC;
  64. border: 1px solid #373b41;
  65. }
  66. /* Input fields */
  67. textarea, input:not([type="file"]):not([type="checkbox"]), [type="submit"] {
  68. color: #ACACAC;
  69. background: #282A2E;
  70. border: 1px double #1d1f21;
  71. border-radius: 5px;
  72. }
  73. /* Input fields, focused */
  74. textarea:focus, input:not([type="file"]):not([type="checkbox"]):focus, [type="submit"]:hover {
  75. border: 1px solid #1d1f21;
  76. -moz-box-shadow: 0 0 10px #1d1f21;
  77. -webkit-box-shadow: 0 0 10px #1d1f21;
  78. box-shadow: 0 0 10px #1d1f21;
  79. }
  80. /* Top bar */
  81. /* Background, border and fade */
  82. .bar {
  83. background-color: #151515;
  84. border-color: #81a2be!important;;
  85. /* comment these out to remove the fade */
  86. /*
  87. -moz-box-shadow: 0 0 40px #FFB300;
  88. -webkit-box-shadow: 0 0 40px #FFB300;
  89. box-shadow: 0 0 40px #FFB300;
  90. */
  91. }
  92. /* Bottom bar, not visible in catalog mode */
  93. div.pages {
  94. background: #151515;
  95. border-color: #81a2be;
  96. }
  97. div.pages a.selected {
  98. color: #cc6666;
  99. }
  100. hr {
  101. border-color: #373b41;
  102. }
  103. div.boardlist {
  104. color: #81a2be;
  105. font-size: 14px;
  106. }
  107. div.boardlist a {
  108. color: #cc6666;
  109. }
  110. table.modlog tr th {
  111. background: #1d1f21;
  112. }
  113.  
  114. /* options.js */
  115. #options_div, #alert_div {
  116. background: #151515;
  117. }
  118.  
  119. .desktop-style div.boardlist:nth-child(1) {
  120. background-color: #151515;
  121. }
  122. /* Red text */
  123. span.heading {
  124. color: indianred;
  125. }
  126. /* Buggy shit */
  127. div.post.reply div.body a {
  128. color: #5f89ac;
  129. text-decoration: none;
  130. }
  131. /* OP */
  132. /* Subject */
  133. .intro span.subject {
  134. color: #b294bb;
  135. }
  136. /* name */
  137. .intro span.name {
  138. color: #5f89ac;
  139. }
  140. /* tripcode */
  141. .intro span.trip {
  142. color: #8abeb7;
  143. }
  144. /* Quick reply */
  145. /* Quick reply banner */
  146. div.banner {background-color:#9988ee;}
  147. #quick-reply th, #quick-reply td {background-color:#1F1F1F;}
  148. #quick-reply table {border-color:#373b41}
  149. /* Buggy shit */
  150. div.post.reply div.body a {
  151. color: #5f89ac;
  152. text-decoration: none;
  153. }
  154.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement