Advertisement
Guest User

for my exilebrahs

a guest
Dec 21st, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.31 KB | None | 0 0
  1. @-moz-document domain("leftypol.org") {
  2. /* Bunker Theme for Leftypol.org */
  3. /* General */
  4. body {
  5.     background: #1d1f21 url('img/fade-yotsuba.png') repeat-x 50% 0%;
  6.     color: #ACACAC;
  7. }
  8.  
  9. /* Top bar */
  10. /* Background, border and fade */
  11. .bar {
  12.     background-color: #151515;
  13.     border-color: #FFB300!important;
  14.     /* comment these out to remove the fade */
  15.     /*
  16.     -moz-box-shadow: 0 0 40px #FFB300;
  17.     -webkit-box-shadow: 0 0 40px #FFB300;
  18.     box-shadow: 0 0 40px #FFB300;
  19.     */
  20. }
  21. /* Board links */
  22. div.boardlist {
  23.     color: #acacac;
  24.     font-size: 14px;
  25. }
  26.  
  27. /* Bottom bar, not visible in catalog mode */
  28. div.pages {
  29.     background: #151515;
  30.     border-color: #117743;
  31. }
  32. div.pages a.selected {
  33.     color: #ff0000;
  34. }
  35. /* Thread separators */
  36. hr {
  37.     border-color: #117743;
  38. }
  39.  
  40. /* Link colors, might or might not work */
  41. a:link, a:visited, .intro a.email span.name {
  42.     color: #FFB300;
  43. }
  44. a:link:hover {
  45.     color: #d00;
  46. }
  47.  
  48. /* Catalog grids */
  49. /* Background color and green border */
  50. .thread.grid-li.grid-size-vsmall, .thread.grid-li.grid-size-vsmall:hover,
  51. .thread.grid-li.grid-size-small, .thread.grid-li.grid-size-small:hover,
  52. .thread.grid-li.grid-size-large, .thread.grid-li.grid-size-large:hover {
  53.     background-color: #282A2E;
  54.     border: 1px solid #117743;
  55. }
  56.  
  57. /* Posting form */
  58. /* Field names */
  59. form table tr th {
  60.     background: #282A2E;
  61.     color: #ACACAC;
  62.     border: 1px solid #117743;
  63. }
  64. /* Input fields */
  65. textarea, input:not([type="file"]):not([type="checkbox"]), [type="submit"] {
  66.     color: #ACACAC;
  67.     background: #282A2E;
  68.     border: 1px double #07371F;
  69.     border-radius: 5px;
  70. }
  71. /* Input fields, focused */
  72. textarea:focus, input:not([type="file"]):not([type="checkbox"]):focus, [type="submit"]:hover {
  73.     border: 1px solid #117743;
  74.     -moz-box-shadow: 0 0 10px #117743;
  75.     -webkit-box-shadow: 0 0 10px #117743;
  76.     box-shadow: 0 0 10px #117743;
  77. }
  78.  
  79. /* OP */
  80. /* Subject */
  81. .intro span.subject {
  82.     color: #34ED3A;
  83. }
  84.  
  85. /* Replies */
  86. /* Background color and green border */
  87. div.post.reply {
  88.     background: #282A2E;
  89.     border-color: #117743;
  90.     border-style: solid;
  91.     border-width: 0.8px;
  92.     border-radius: 5px;
  93. }
  94. /* Highlighted replies */
  95. div.post.reply.highlighted {
  96.     background: rgba(59, 22, 43, 0.4);
  97. }
  98. /* Buggy shit */
  99. div.post.reply div.body a {
  100.     color: #ff0000;
  101.     text-decoration: none;
  102. }
  103. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement