Advertisement
Guest User

Untitled

a guest
Jan 15th, 2017
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.87 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.     color: black;
  84.     right:0!important;
  85.     margin-top:34px!important;
  86.     width:100%!important;
  87.     max-width:2000px;
  88.     min-height:calc(100% - 60px);
  89. }
  90.  
  91. .options_tab input[type="button"]{
  92.     position:absolute;
  93.     top:42px;
  94.     width:calc(100% - 40px)!important;
  95.     left:20px!important;
  96. }
  97. /* - Body - */
  98.  
  99. body{
  100.     background:#D2CFB8;
  101.     background-image: url('https://i.imgur.com/ag3seP4.png');
  102.     background-repeat: no-repeat;
  103.     background-attachment: fixed;
  104.     background-position: right bottom;  
  105.     z-index: -1;   
  106. }
  107.  
  108.  
  109. form table tr th {
  110.     background:#B4B19D;
  111. }
  112.  
  113.  
  114. hr{
  115.     border-top: 1px solid #363636;
  116. }
  117.  
  118. div.banner {
  119.     background-color: #FF0000;
  120. }
  121.  
  122. div.post.reply {
  123.     background: #f2f2f2;
  124.     border-color:#363636;
  125.     border-width: 2px;
  126.     border-style: solid;
  127.     padding:0;
  128. }
  129. .post-menu {position: absolute; font-size: 12px; line-height: 1.3em; color:wheat;}
  130. div.post.reply.highlighted {
  131.   background: #AE9B83;
  132. }
  133. .intro span.name {
  134.   color: #F90;
  135.   font-weight: bold;
  136. }
  137. p.intro{
  138.     background: #363636;
  139.     color:#E3E3E3;
  140. }
  141. a,a:visited {
  142.   text-decoration: underline;
  143.   color: #F00;
  144. }
  145. .post.op.body-not-empty p.intro, .post.op.body-not-empty .mentioned *{
  146.     color:#34345C;
  147.     background:none;
  148. }
  149. .intro a.email span.name {
  150.   color: #00F;
  151. }
  152.  
  153. .mentioned *{
  154.     color:#E3E3E3;
  155. }
  156.  
  157.  
  158. div.pages {
  159.     background:#B4B19D;
  160.     color: #707070 !important;
  161.     border: 1px solid #363636;
  162. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement