Advertisement
Guest User

Untitled

a guest
Jul 26th, 2012
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.58 KB | None | 0 0
  1.  
  2. /* hover text for the report button */
  3. .report-button .option:not(.error):hover:before {
  4. color: black;
  5. background-color: #CCF;
  6. border: 1px solid #333;
  7. border-radius: 4px;
  8. content: "Please message the moderators if you click report, otherwise we won't know why it was reported.";
  9. display: block;
  10. font-size: 11px;
  11. font-weight: bold;
  12. margin-left: 75px;
  13. margin-top: 7px;
  14. padding: 5px;
  15. position: absolute;
  16. text-align: center;
  17. z-index: 1000
  18. }
  19. /* rainbow arrows */
  20. .arrow.upmod {
  21. background-image: url(http://f.thumbs.redditmedia.com/uH4ytDeMqsch7FiY.png);
  22. background-position: 0 0
  23. }
  24. .arrow.downmod {
  25. background-image: url(http://e.thumbs.redditmedia.com/Y3ajEtYnyDDsLOjF.png);
  26. background-position: 0 0
  27. }
  28. a[href*="/meta"].title:link, a[href*="/meta_"].title:link, a[href*="/meta"].title:visited, a[href*="/meta_"].title:visited {
  29. color: #282 !important
  30. }
  31. /* Safe Space Banner */
  32. a[href="/safe-space"] {
  33. display: block;
  34. width: 150px;
  35. height: 150px;
  36. background-image: url(http://d.thumbs.redditmedia.com/mTHUjqVWVryJwmTW.png);
  37. margin: 0 auto
  38. }
  39.  
  40. /* Trigger Warnings */
  41. .content a[href="/trigger"] {
  42. color: black !important;
  43. background: black !important
  44. }
  45. a[href="/trigger"]:hover {
  46. color: white !important;
  47. background: black
  48. }
  49. a[href="/trigger"]:before {
  50. content: "[TW]";
  51. color: black !important;
  52. background: salmon !important
  53. }
  54. .content a[href="/removed"] {
  55. color: #003F87 !important;
  56. background: #003F87 !important
  57. }
  58. a[href="/removed"]:hover {
  59. color: white !important;
  60. background: #003F87
  61. }
  62. a[href="/removed"]:before {
  63. content: "[Removed Content:]";
  64. color: #003F87 !important;
  65. background: #87CEFA !important
  66. }
  67.  
  68. /* anna stole this from askscience on 04/07/2012, thanks to "fromITRoom" who is the dude that made it first i guess */
  69. .usertext-buttons:before {
  70. content: "Please be sure to review the sidebar and FAQ before posting! This subreddit is heavily moderated. Posts that are disrespectful to GSM (Gender and Sexual Minority) people of any type are subject to removal, and may lead to removal of your posting privileges in this subreddit.";
  71. font-size: smaller
  72. }
  73. /* Puts sticky posts on top -- stolen from actuallesbians by robotanna at greenduchs' behest :) */
  74. .titlebox .usertext-body .md ol li a {
  75. border: 1px solid #fff;
  76. background-color: #4DD926;
  77. padding: 1px 8px 1px;
  78. color: black;
  79. text-decoration: none;
  80. font-weight: bold;
  81. font-size: small
  82. }
  83.  
  84. /* Thread-specific banners - for invasions etc. stolen by anna from r/anarchy*/
  85. /* HOW-TO: Add "#siteTable:first-child .id-t3_<UNIQUE IDENTIFIER>:before," above the appropriate content tag. */
  86.  
  87. #siteTable:first-child .id-t3_w6u1t:before, #siteTable:first-child .id-t3_w6u1t:before {
  88. content: "Please note: if you are planning on posting a creepy, gross, or objectifying comment in this thread, your comment will be removed and you may lose posting privileges in this subreddit.";
  89. background-color: #EFF7FF;
  90. border: 1px solid #5F99CF;
  91. border-radius: 3px;
  92. margin: 5px 305px 5px 0px;
  93. padding: 5px 10px;
  94. display: block;
  95. font-size: 20px;
  96. text-align: center
  97. }
  98.  
  99. #siteTable:first-child .id-t3_w8sia:before, #siteTable:first-child .id-t3_w8sia:before {
  100. content: "Please note: if you are planning on posting a creepy, gross, or objectifying comment in this thread, your comment will be removed and you may lose posting privileges in this subreddit. Also, please be respectful with your questions. Ask yourself: would it be appropriate for a total stranger to come up to me and ask this?";
  101. background-color: #EFF7FF;
  102. border: 1px solid #5F99CF;
  103. border-radius: 3px;
  104. margin: 5px 305px 5px 0px;
  105. padding: 5px 10px;
  106. display: block;
  107. font-size: 18px;
  108. text-align: center
  109. }
  110. /* Next 4 sections make deleted messages less noticeable -stolen from askscience by GD*/
  111. form.grayed, form.grayed ~ ul.flat-list.buttons {
  112. display: none
  113. }
  114. p.tagline > a.expand:first-child + em:after, div.collapsed > a.expand:first-child + em:after {
  115. visibility: visible;
  116. font-size: x-small;
  117. font-weight: bold;
  118. content: "[deleted]"
  119. }
  120. p.tagline > a.expand:first-child + em, div.collapsed > a.expand:first-child + em {
  121. visibility: hidden;
  122. font-size: 0
  123. }
  124. div.collapsed > a.expand:first-child + em + time + a.expand, div.collapsed > a.expand:first-child + em + time + em + a.expand {
  125. display: none
  126. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement