Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.24 KB | None | 0 0
  1. /* 4chan Tidyup */
  2.  
  3. body {
  4.   background: #F8F8F8;
  5.   font-family:"Segoe UI";
  6.   font-size:12px;
  7. }
  8.  
  9. /* Fix conflicting code block rules */
  10. pre.prettyprint {
  11.   padding: 2px !important;
  12.   background-color:inherit;
  13. }
  14.  
  15. /* Tidy up ads */
  16. hr {
  17.   display:none;
  18. }
  19. .topad, .middlead, .bottomad,.absBotDisclaimer {
  20.   display:none !important;
  21. }
  22.  
  23. /* */
  24. .postContainer, .dialog, div.pagelist {
  25.   background: #FFF;
  26.   background: #FFF linear-gradient(#FFF, #F8F8F8);
  27.   border: #CCC;
  28. }
  29.  
  30. .inline, #qp {
  31.   border-top:    1px solid #DDD !important;
  32.   border-left:   1px solid #DDD !important;
  33.   border-right:  1px solid #CCC !important;
  34.   border-bottom: 1px solid #CCC !important;
  35. }
  36.  
  37. #qp {
  38.   padding:2px 8px;
  39. }
  40. #qp .menu-button {
  41.   display:none;
  42. }
  43.  
  44. .reply:target, .reply.highlight {
  45.   background:#FFF !important;
  46.   border:1px solid grey !important;
  47. }
  48. .yotsuba_b_new .highlight-anti, .burichan_new .highlight-anti {
  49.   background:#EEE !important; /* hover a visible anchored post in default extension */
  50.   border:1px solid black !important;
  51. }
  52.  
  53. #quote-preview { /* hover quotes in 4chan default extension */
  54.    border:1px solid grey !important;
  55. }
  56.    
  57. div.reply {
  58.   padding-right:8px;
  59.   background:inherit;
  60.   border:1px solid transparent !important;
  61. }
  62. .hide-reply-button {
  63.   position:relative;
  64.   top:3px;
  65. }
  66. a.hide-reply-button, a.hide-thread-button {
  67.   color: #CCC;
  68. }
  69.  
  70. /* Border between threads */
  71. .thread {
  72.   padding-top:12px;
  73. }
  74. .thread::after {
  75.   display:block;
  76.   content:'';
  77.   border-top:1px solid lightgrey;
  78.   border-bottom:1px solid darkgrey;
  79.   width:90%;
  80.   margin:10px auto;
  81. }
  82.  
  83. /* Background style for menu items */
  84. .entry {
  85.   color:black;
  86. }
  87. .entry:hover {
  88.   background:#CCC !important;
  89.   color:white !important;
  90. }
  91.  
  92.  
  93. .postMessage {
  94.   margin-left:10px;
  95. }
  96.  
  97. .nameBlock {
  98.   margin-right:4px;
  99. }
  100.  
  101. .postInfo, div.post div.postInfo span.postNum a {
  102.   color: #CCC;
  103. }
  104.  
  105. .postInfo input {
  106.   opacity:0.2;
  107. }
  108. .postInfo input:hover {
  109.   opacity:1.0;
  110. }
  111.  
  112. .opContainer .fileInfo {
  113.   margin-bottom:4px;
  114. }
  115.  
  116. /* Dropdown menus on posts */
  117. .postContainer .menu-button {
  118.   position:absolute;
  119.   right:8px;
  120.   font-size:8px;
  121.   color: #CCC;
  122. }
  123. .postMessage:after {
  124.   display:block;
  125.   content:'';
  126.   clear:left;
  127. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement