Advertisement
Guest User

Board CSS

a guest
Jan 13th, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. /* - Board List -*/
  2.  
  3. .desktop-style div.boardlist, div.boardlist a, div.boardlist{
  4. color:#E3E3E3;
  5. }
  6.  
  7. .desktop-style div.boardlist:not(.bottom){
  8. background-color: #363636;
  9. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  10. position: fixed;
  11. border-bottom: 3px solid rgb(168, 35, 35);
  12. font-family: arial, helvetica, sans-serif;
  13. font-size: 1em;
  14. padding: 0.2em 1.1em 0.3em;
  15. }
  16.  
  17. .desktop-style div.boardlist.bottom{
  18. background-color: #363636;
  19. border: 3px solid rgb(168, 35, 35);
  20. margin-top:20px;
  21. margin-right:10px;
  22. margin-left:10px;
  23. padding: 0.3em;
  24. }
  25.  
  26. .options_tab input[type="button"]{
  27. top:42px;
  28. width:calc(10% - 4px)!important;
  29. left:20px!important;
  30. }
  31.  
  32. a[title="Options"]{
  33. position:absolute;
  34. top:5px;
  35. right:10px;
  36. font-size:9pt;
  37. text-decoration:none;
  38. }
  39. div.boardlist:not(.bottom) span:not(.favorite-boards):last-child{
  40. right:10px;
  41. top:20px;
  42. }
  43.  
  44. /* - Options Menu - */
  45.  
  46. #options_div{
  47. background-color:#f2f2f2;
  48. margin:0;
  49. top:10%;
  50. height:80%!important;
  51. width:80%!important;
  52. }
  53.  
  54. #options_tablist{
  55. margin:0;
  56. padding:14px 6px 0;
  57. height:calc(100% - 14px);
  58. background-color:rgba(0,0,0,0.8);
  59. }
  60.  
  61. .options_tab_icon{
  62. color:#ddd;
  63. }
  64.  
  65. .options_tab_icon.active{
  66. color:red !important;
  67. }
  68.  
  69. .options_tab{
  70. padding:20px;
  71. }
  72.  
  73. .options_tab h2{
  74. color:red !important;
  75. }
  76.  
  77. .options_tab textarea{
  78. background-color:#d7d7d7;
  79. position:relative!important;
  80. top:0!important;
  81. left:0!important;
  82. bottom:0!important;
  83. right:0!important;
  84. margin-top:34px!important;
  85. width:100%!important;
  86. max-width:2000px;
  87. min-height:calc(100% - 60px);
  88. }
  89.  
  90. .options_tab input[type="button"]{
  91. position:absolute;
  92. top:42px;
  93. width:calc(100% - 40px)!important;
  94. left:20px!important;
  95. }
  96. /* - Body - */
  97.  
  98. body{
  99. background:#D2CFB8;
  100. background-image: url('https://i.imgur.com/ag3seP4.png');
  101. background-repeat: no-repeat;
  102. background-attachment: fixed;
  103. background-position: right bottom;
  104. z-index: -1;
  105. }
  106.  
  107.  
  108. form table tr th {
  109. background:#B4B19D;
  110. }
  111.  
  112.  
  113. hr{
  114. border-top: 1px solid #363636;
  115. }
  116.  
  117. div.banner {
  118. background-color: #FF0000;
  119. }
  120.  
  121. div.post.reply {
  122. background: #f2f2f2;
  123. border-color:#363636;
  124. border-width: 2px;
  125. border-style: solid;
  126. padding:0;
  127. }
  128.  
  129. p.intro{
  130. background: #363636;
  131. color:#E3E3E3;
  132. }
  133.  
  134. .post.op.body-not-empty p.intro, .post.op.body-not-empty .mentioned *{
  135. color:#34345C;
  136. background:none;
  137. }
  138.  
  139. .mentioned *{
  140. color:#E3E3E3;
  141. }
  142.  
  143.  
  144. div.pages {
  145. background:#B4B19D;
  146. color: #707070 !important;
  147. border: 1px solid #363636;
  148. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement