Advertisement
Guest User

iichan userstyle

a guest
Jan 12th, 2013
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.47 KB | None | 0 0
  1. a[href$="/bro/"] {
  2.     display: none !important;
  3. }
  4.  
  5. td.reply {
  6.     border-radius: 5px;
  7.     border: 1px solid currentcolor;
  8.     //box-shadow: 0 0 5px black;
  9.     padding: 5px;
  10. }
  11.  
  12. td.reply > label {
  13.     white-space: nowrap;
  14.     //-webkit-transform: translate(-100%, 0);
  15.     overflow: hidden;
  16.     display: inline-block;
  17.     -webkit-transition-property: -webkit-transform;
  18.     -webkit-transition-duration: .2s;
  19.     -webkit-transition-timing-function: ease-in-out;
  20. }
  21.  
  22. td.reply:hover > label {
  23.     //-webkit-transform: none;
  24. }
  25.  
  26. td.reply > .de-ppanel {
  27.     float: right;
  28. }
  29.  
  30. td.reply > .de-refmap {
  31.     margin: 0;
  32. }
  33.  
  34. .reflink {
  35.     //display: none;
  36. }
  37.  
  38. .doubledash, .thumbnailmsg {
  39.     display: none;
  40. }
  41.  
  42. .spoiler {
  43.     -webkit-transition-property: color, background;
  44.     -webkit-transition-duration: .2s;
  45.     -webkit-transition-timing-function: ease-in-out;
  46. }
  47.  
  48. .reply > blockquote {
  49.     margin: 0 0 0 10px;
  50. }
  51.  
  52. /*.filesize {display: none;}*/
  53. .thumb {
  54.     margin: 0 10px !important;
  55. }
  56.  
  57. p, blockquote.unkfunc {
  58.     margin: 0;
  59. }
  60.  
  61. br[clear="left"] {
  62.     display: none;
  63. }
  64.  
  65. hr {
  66.     border: 1px solid;
  67.     border-left: none;
  68.     border-right: none;
  69.     height: 2px;
  70.     clear: both;
  71. }
  72.  
  73. .abbrev > a {
  74.     display: inline-block;
  75.     height: 1em;
  76.     -webkit-transition-property: all;
  77.     -webkit-transition-duration: .2s;
  78.     -webkit-transition-timing-function: ease-in-out;
  79. }
  80.  
  81. .abbrev > a:hover {
  82.     height: 2em;
  83. }
  84.  
  85. body > .adminbar {
  86.     -webkit-transform: translate(0, -90%);
  87.     border-bottom-right-radius: 5px;
  88.     border-bottom: 1px solid;
  89.     border-right: 1px solid;
  90.     top: 0;
  91. }
  92.  
  93. form ~ table {
  94.     -webkit-transform: translate(0, 90%);
  95.     border-bottom: none;
  96.     border-left: none;
  97.     border-right: 1px solid currentcolor;
  98.     border-top-right-radius: 5px;
  99.     border-top: 1px solid currentcolor;
  100.     bottom: 0;
  101.     max-width: 80%;
  102. }
  103.  
  104. body > .adminbar, form ~ table {
  105.     -webkit-transition-duration: .2s;
  106.     -webkit-transition-property: -webkit-transform, opacity;
  107.     -webkit-transition-timing-function: ease-in-out;
  108.     background-color: inherit;
  109.     box-shadow: 0 0 5px black;
  110.     display: block;
  111.     left: 0;
  112.     opacity: 0;
  113.     padding: 5px;
  114.     position: fixed;
  115. }
  116.  
  117. form ~ table:hover, body > .adminbar:hover {
  118.     -webkit-transform: translate(0, 0);
  119.     opacity: 1;
  120. }
  121.  
  122. body > .adminbar::after {
  123.     bottom: -50%;
  124.     top: 100%;
  125. }
  126.  
  127. form ~ table::after {
  128.     bottom: 100%;
  129.     top: -50%;
  130. }
  131.  
  132. form ~ table::after, body > .adminbar::after {
  133.     content: "";
  134.     position: absolute;
  135.     //border: 5px solid red;
  136.     left: 0;
  137.     right: 0;
  138.     z-index: -1;
  139. }
  140.  
  141. body > .adminbar ~ .adminbar {
  142.     display: none;
  143. }
  144.  
  145. form ~ table td, form ~ table tbody, form ~ table tr {
  146.     display: inline-block;
  147.     white-space: nowrap;
  148.     border: none;
  149. }
  150.  
  151. form ~ table td:nth-of-type(2) {
  152.     max-width: 600px;
  153.     overflow: auto;
  154. }
  155.  
  156. form ~ table td form {
  157.     display: inline-block;
  158. }
  159.  
  160. form ~ table td:nth-of-type(3)::before {
  161.     content: "►";
  162. }
  163.  
  164. form ~ table td:nth-of-type(1)::after{
  165.     content: "◄";
  166. }
  167.  
  168. .adminbar a[href="/cgi-bin/../b/"], .adminbar a[href="/cgi-bin/../a/"] {
  169.     font-weight: bold;
  170. }
  171.  
  172. .adminbar a[href="/cgi-bin/../b/"]::before, .adminbar a[href="/cgi-bin/../a/"]::before, .adminbar a[href="/cgi-bin/../b/"]::after, .adminbar a[href="/cgi-bin/../a/"]::after {
  173.     content: "/";
  174. }
  175.  
  176. img[src*="thumb"], img[src^="blob"] {
  177.     -webkit-transition: opacity .2s ease-in-out;
  178. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement