Advertisement
Guest User

VanillaPunch

a guest
Mar 19th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.79 KB | None | 0 0
  1. /*.threadage { display: none !important }*/
  2. /*.user-card { display: none !important }*/
  3.  
  4. /* -= FONT! =- */
  5. body, button, input, select, textarea {
  6.     font-family: Tahoma,Helvetica,Arial,Verdana !important
  7. }
  8.  
  9. /* Background */
  10. html::before { background: url('https://horobox.co.uk/u/7Jd6.png') #bbb !important; }
  11.  
  12.  
  13. /* -= POSTS in thread =- */
  14. /* Font */
  15. .ql-container.ql-snow .ql-editor p {color: #0a0a0a; font-size: 11pt;}
  16. .ql-container.ql-snow .ql-editor postquote {color: #323232; font-size: 11pt;}
  17. .ql-editor ul {color: #151515 }
  18. .ql-snow .ql-editor strong {color: #333}
  19.  
  20. /* Post color */
  21. .postrender .postinner, .has-background-image { background: #D9EBFF }
  22. .postblock-read .postmain .postrender .postinner>.postuser { background: #e6e6e6 }
  23. .postblock .postcontent {
  24.     background: linear-gradient(to right, #D9EBFF, #fff 400px);
  25.     opacity: 1;
  26. }
  27. .postblock-own .postcontent {
  28.     background: linear-gradient(to right, #F0FFC0, #fff 400px) !important;
  29.     opacity: 1;
  30. }
  31. .postblock-own .postmain .postrender .postinner>.postuser { background: #F0FFC0 }
  32. .postrender .postinner>.postuser .background-image, .postrender .postinner>.postuser .has-background-image {
  33.     display: none
  34. }
  35.  
  36. /* Post borders */
  37. #wrapper #content .forumhead { border-bottom: none }
  38. .pagnation.postpagnation.above { border-bottom: 1px solid #777 }    
  39. #wrapper #content .postlist .forumpanel>.postmain .posthead { border-bottom: 1px solid #777 }
  40. #wrapper #content .postlist .forumpanel { border-bottom: 1px solid #777 }
  41. .lastread { border-bottom: 1px solid #777 }
  42. .postrender .postinner>.postuser { border-right: none }
  43.  
  44. /* Posthead */
  45. .postrender .posthead { background-color: #ccc; color: #5F5F5F }
  46. .postrender .posthead a, .postrender .posthead strong { color: #444 }
  47.  
  48. /* Reply box. Gradient or #eee (oldpunch) */
  49. .threadreply.postrender .postinner { background: #eee /*linear-gradient(to right, #F0FFC0, #fff 400px)*/ }
  50. .threadreply.postrender .postinner .postbody .quill-editor { background: #FFF }
  51. .ql-container.ql-snow { border: 1px solid #888 }
  52. .level { border-bottom: 1px solid #888; border-left: 1px solid #888; border-right: 1px solid #888; }
  53. .ql-toolbar.ql-snow.toolbar button:hover { background: #ddd }
  54.  
  55.  
  56. /* -= USERNAMES =- */
  57. .username a { color: #147 !important; }
  58. .user-gold a { color: rgb(160, 96, 0) !important; }
  59. .creator a { color: #666 !important } /* Grey creator color unless mod etc. */
  60. .user-moderator a { color: /*green*/#00aa00 !important; } /* These three override .creator */
  61. .user-admin a { color: #0070FF !important; }
  62. .user-banned a { color: #DD0000 !important; }
  63. .user-online a { border-bottom: 1px dotted #0d0; }
  64.  
  65.  
  66. /* -= DROPDOWNS =- */
  67. .dropdown.is-bottom-left .dropdown-menu { width: 700px }
  68. .alert-component .dropdown-item .alert-dropdown, .alert-component .dropdown .dropdown-menu .has-link a .alert-dropdown, .dropdown .dropdown-menu .has-link .alert-component a .alert-dropdown {
  69.     width: 681px
  70. }
  71. a.dropdown-item:hover, .dropdown .dropdown-menu .has-link a:hover {
  72.     background-color: #448FC9;
  73. }
  74. .alert-item { background-color: #FFA }
  75.  
  76.  
  77.  
  78. /* -= HEADER =- */
  79. #header #toolbar { background-color: #2890E2 }
  80. #header #toolbar .navbar-item { color: #f2f2f2 }
  81. #header #toolbar .navbar-item:hover { background-color: #1B69A6 !important }
  82.  
  83. /* -= FORUM LIST =- */
  84. /* Headers */
  85. #wrapper #content .forumcategoryblock .forumcategoryheader {
  86.     background-color: #2890E2;
  87. }
  88. #wrapper #content .forumcategoryblock .forumcategoryblock .forumcategoryheader {
  89.     background-color: #2890E2;
  90. }
  91. #wrapper #content .forumcategoryblock .forumcategoryheader .categorytitle, #wrapper #content .forumcategoryblock .forumcategoryheader .mdi {
  92.     color: white
  93. }
  94. /* Forum and Thread font */
  95. #wrapper #content .forumcategoryblock .forumpanel .forumname .forumtitle {
  96.     color: #147;
  97. }
  98. #wrapper #content .forumcategoryblock .forumpanel .forumlastpost .threadname {
  99.     color: #147;
  100. }
  101.  
  102.  
  103. /* -= THREAD LIST =- */
  104. .unreadposts {
  105.     color: #147;
  106.     background-color: #FFA;
  107.     border: 1px solid #ccc;
  108. }
  109.  
  110. /* -= Alternating thread bg =- */
  111. .threadblock.forumpanel:not(.is-closed):nth-child(even) {
  112.     background-color: #EDF1F3 !important;
  113. }
  114.  
  115. .threadblock.forumpanel.is-sticky:nth-child(even) {
  116.     background-color: #EDEDA1 !important;
  117. }
  118.  
  119. .threadblock.forumpanel.is-closed:nth-child(even) {
  120.     background-color: #E0E0E0 !important;
  121. }
  122.  
  123. /* Thread font */
  124. body.page-forum .threadlistsection .threadblock .threadmain .threadtitle .threadname {
  125.     color: #147;
  126. }
  127.  
  128.  
  129.  
  130. /* -= PAGINATION =- */
  131. .page.is-spacer {
  132.     color: white !important;
  133.     background-color: #2890E2 !important;
  134. }
  135. .page.pageinfo { color: white !important }
  136. .pagnation.threadpagnation .page.pageinfo, .pagnation.postpagnation .page.pageinfo { opacity: 1 }
  137. /* Pages */
  138. #wrapper #content .pagnation.threadpagnation, #wrapper #content .pagnation.postpagnation {
  139.     background-color: #2890E2 !important;
  140. }
  141. #wrapper #content .pagnation.threadpagnation .page, #wrapper #content .pagnation.postpagnation .page {
  142.     color: white !important;
  143. }
  144. /* Active page */
  145. #wrapper #content .pagnation.threadpagnation a.page.is-active, #wrapper #content .pagnation.postpagnation a.page.is-active {
  146.     background-color: #1B69A6 !important;
  147. }
  148. /* Hover */
  149. #wrapper #content .pagnation.threadpagnation a.page:hover, #wrapper #content .pagnation.postpagnation a.page:hover {
  150.     color: white !important;
  151.     background-color: #1B69A6 !important;
  152. }
  153.  
  154.  
  155.  
  156. /* -= Quotes =- */
  157. .ql-container.ql-snow .ql-editor postquote {
  158.     border: 1px solid #888;
  159.     background-color: #bdf;
  160. }
  161. .ql-container.ql-snow .ql-editor postquote .head {
  162.     color:#0055c1;
  163.     background-color: #ace;
  164.     font-weight:bold;
  165. }
  166. .ql-container.ql-snow .ql-editor postquote .head a { color:#05a }
  167. .ql-container.ql-snow .ql-editor postquote .head a:hover { text-decoration:underline }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement