Aluf

4Chan [CSS]-1/26/2015

Jan 27th, 2015
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.36 KB | None | 0 0
  1. /* Background */
  2. body {
  3.  background: none;
  4.  background-color: #222;
  5.  color: #929492;
  6.  font-size:80%;
  7. }
  8.  
  9.  
  10. /* General links */
  11. a {
  12.  color: #797;
  13.  text-decoration:none;
  14. }
  15. a:hover {
  16.  color: #9f9;
  17. }
  18. a:visited {
  19.  color: #977;
  20. }
  21.  
  22. a.quotelink {
  23.     color: #FFFFFF;
  24. }
  25.  
  26. /* Board list */
  27. #boardNavDesktop a {
  28.  color: #797!important;
  29. }
  30. #boardNavDesktop a:visited {
  31.  color: #a88!important;
  32. }
  33. #boardNavDesktop a:hover {
  34.  color: #8f8!important;
  35. }
  36.  
  37. /* random other links */
  38. .postNum a, a.quotelink, .nameBlock, .nameBlock a {
  39.  color: #88957a!important;
  40. }
  41.  
  42. /* stuff */
  43. hr {
  44.  border-color:#454;
  45. }
  46.  
  47. /* posts */
  48. div.reply {
  49.  background:none!important;
  50.  background-color: #333!important;
  51.  border: 1px solid #444!important;
  52.  border-radius:5px!important;
  53.  box-shadow:0px 0px 6px black!important;
  54. }
  55.  
  56. div.op .fileThumb img {
  57.  box-shadow:0px 0px 6px black;
  58. }
  59.  
  60. .sideArrows {
  61.  display:none;
  62. }
  63. .postingMode {
  64.  font-family: Monospace;
  65.  color:#888!important;
  66.  background-color:#444844!important;
  67.  border-top:1px solid #484a48!important;
  68.  border-bottom:1px solid #484a48!important;
  69. }
  70. table.postForm > tbody > tr > td:first-child {
  71.  background-color:transparent;
  72.  border:0px;
  73.  color:#aaa;
  74.  vertical-align:top;
  75. }
  76. .postForm textarea, .postForm input, input[type="file"] {
  77.  background-color:#444;
  78.  border:1px solid #555!important;
  79.  border-radius:2px;
  80.  padding:2px;
  81.  color:#aaa;
  82.  box-shadow:0px 0px 6px black;
  83.  margin:1px;
  84. }
  85. .globalMessage {
  86.  color:#FFD24D!important;
  87. }
  88.  
  89. /* Displays post number */
  90. body{counter-reset:posts;}
  91. div.reply{counter-increment: posts;}
  92.  
  93. div.reply div.postInfo:after{
  94. float: right;
  95. font-size: 10px !important;
  96. color: white;
  97. opacity: 0.4;
  98. margin-left: 4px;
  99. padding: 2px;
  100. content: "#"counter(posts);
  101. }
  102.  
  103. div.reply div.reply div.postInfo:after, div.op > div.postInfo:after{display:none;}
  104.  
  105. /*Makes the comment box bigger*/
  106. textarea{height:10em !important;width:30em !important;}
  107.  
  108. /*removes the logo and board title.*/
  109. img.title,div.boardTitle,div.boardSubtitle{display:none !important;}
  110.  
  111. /*removes the rules and info underneath the post box*/
  112. ul.rules{display:none !important;}
  113.  
  114. /*floating nav footer*/
  115. #boardNavDesktopFoot {
  116. display: block;
  117. position: fixed;
  118. bottom: 0px;
  119. left: 0px;
  120. background: #222;
  121. width: 100%;
  122. border-top: 1px solid #444;
  123. padding-top: 0px !important;
  124. height: 30px !important;
  125. }
Advertisement
Add Comment
Please, Sign In to add comment