Guest User

Untitled

a guest
Nov 17th, 2016
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.72 KB | None | 0 0
  1. /*  intended for use with dark flat ahoka theme for appchan x   */
  2.  
  3. body, textarea, input {
  4.     font-family: "Open Sans" !important;
  5.     font-weight: 500 !important;
  6. }
  7.  
  8. /* removes borders and background from the thread area */
  9. #doc, #threads, .board > .thread {
  10.     background: rgba(0, 0, 0, 0);
  11.     border: none;
  12. }
  13.  
  14. /* center posts */
  15. .replyContainer, .opContainer {
  16.     margin-left: 16em !important;
  17. }
  18.  
  19. /* remove this for showing inline replies */
  20. .inline > .replyContainer {
  21.     margin-left: 0em !important;
  22. }
  23.  
  24. /* justify post width, add spacing and padding */
  25. .post {
  26.     width: 50em !important;
  27.     margin-bottom: 2em !important;
  28.     padding: 1em !important;
  29. }
  30.  
  31. /* make the OP the same as everything else */
  32. .opContainer {
  33.     margin-top: 2em !important;
  34.     width: 50em !important;
  35.     margin-bottom: 2em !important;
  36. }
  37.  
  38.  
  39. /* add a background image */
  40. body {
  41.     background-image: url(http://i.imgur.com/3qNakJn.jpg);    
  42.     background-repeat: no-repeat;
  43.     background-attachment: fixed;
  44.     background-position: center;
  45. }
  46.  
  47. /* take out the solid column on the right side */
  48. .sidebar-normal body {
  49.     margin: 0;
  50. }
  51.  
  52.  
  53. /* misc small fixes */
  54. .sidebar-location-right.sidebar-normal:not(.pagination-on-side):not(.fourchan-ss-navigation) .pagelist, .sidebar-location-right.sidebar-normal #header-bar {
  55.     right: 0px;  
  56. }
  57.  
  58. tbody > tr:nth-of-type(2n+1) {
  59.     background: inherit !important;  
  60. }
  61.  
  62. #blotter > thead {
  63.     display: none !important;
  64. }
  65.  
  66. /* top padding for the board banner on the right */
  67. .boardBanner, #boardTitle {
  68.     margin-top: 3em;  
  69. }
  70.  
  71. /* undo the spacing for the catalog */
  72. .catalog-small {
  73.     margin-top: 2em;
  74.     margin-right: 252px;
  75. }
  76.  
  77. /* catalog formatting */
  78. .catalog-thread {
  79.     background: rgba(35,36,37,.7);
  80.     padding: 1em !important;
  81.     height: 17em !important;
  82.     margin: 1em !important;
  83. }
  84.  
  85. /* fix padding on hover posts */
  86. #hoverUI > #qp > .replyContainer {
  87.     margin-left: 0em !important;  
  88. }
  89.  
  90. #blotter, body>.center {
  91.     display: none !important;  
  92. }
  93.  
  94. #delform {
  95.     background: none !important;
  96.     box-shadow: none !important;
  97. }
  98.  
  99.  
  100. .post, #blotter, #breadCrumb {
  101.     background-color: rgba(21, 22, 24, .7) !important; 
  102. }
  103.  
  104. /*minimize :^) */
  105. .fileText {
  106.     display: none; 
  107. }
  108.  
  109. .post {
  110.     border: 2px solid rgba(0, 0, 0, 0) !important;
  111.     border-radius: 2px;
  112.     transition: border .4s ease;
  113. }
  114.  
  115. .post:hover {
  116.     border-bottom: 2px solid dodgerblue !important;
  117. }
  118.  
  119. .dialog {
  120.     background: none !important;   
  121. }
  122.  
  123. /* hover-created replies */
  124. #qp>.postContainer>.post {
  125.     margin-bottom: 0px !important;
  126.     box-shadow: none !important;
  127.     background-color: rgba(21, 22, 24, .95) !important;                
  128. }
  129.  
  130. #header-bar {
  131.     background-color: rgba(21, 22, 24, .95) !important;
  132. }
Advertisement
Add Comment
Please, Sign In to add comment