Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.22 KB | None | 0 0
  1. /*--Fix new plurks indicators--*/
  2. ul#filter_tab li {
  3. float : left;
  4. opacity: 1;
  5. margin-top:5px;
  6. }
  7. #filter_tab a {
  8. display : table-cell;
  9. overflow: visible;
  10. margin-right: 5px;
  11. }
  12.  
  13. /*--Turn off Post-It Note Glow on new plurks--*/
  14. .plurk_cnt.new1 {background-color: #333333;}
  15. .plurk_cnt.new2 {background-color: #333333;}
  16. .plurk_cnt.new3 {background-color: #333333;}
  17.  
  18. .plurk_cnt.new4 {background-color: #333333;}
  19. .plurk_cnt.new5 {background-color: #333333;}
  20. .plurk_cnt.new6 {background-color: #333333;}
  21.  
  22. /*--Make Huge Font in New Plurk box smaller--*/
  23. .input_holder #input_big {
  24. background-color: white;
  25. font-size: 200%;
  26. color: #333 ;
  27. font-family: "verdana";
  28. overflow-y: auto;
  29. width: 200%;
  30. }
  31.  
  32. /*--Remove Plurk Creature--*/
  33. #dynamic_logo
  34. {
  35. opacity:0;filter:alpha(opacity=0);zoom:1
  36. }
  37.  
  38. /*--Remove Fans and Awards--*/
  39. .dash-segment-fans {display : none;}
  40. .dash-segment-award {display : none;}
  41.  
  42. /*--Narrower Timeline--*/
  43. #timeline_holder
  44. {
  45. height:40vh!important;
  46. }
  47.  
  48. /*--Rounded Corners!--*/
  49. ._lc_ .plurk_cnt
  50. {
  51. border-radius: 9px 9px 9px 9px;
  52. -khtml-border-radius: 9px;
  53. webkit-border-radius: 9px;
  54. }
  55.  
  56. ._lc_ .plurk_cnt {
  57. border-right: 0px !important;
  58. border-bottom: 0px !important;
  59. }
  60.  
  61. /*--Plurk background and Text--*/
  62. .plurk_cnt {
  63. padding: 3px;
  64. background: #333333;
  65. color: #CCCCCC;
  66. }
  67.  
  68. /*--Muting Plurks--*/
  69. .muted
  70. {
  71. filter:alpha(opacity=20);
  72. opacity:0.05;
  73. zoom:1;
  74. }
  75.  
  76. .unmute
  77. {
  78. color:#000 !important;
  79. }
  80.  
  81. .muted:hover {filter:alpha(opacity=100); opacity:1; zoom:1;}
  82.  
  83. .response_count {border-radius:6px;} -
  84.  
  85. /*-- Response Box --*/
  86. .response_box {
  87. background: #333333;
  88. }
  89.  
  90. /*-- Response box background --*/
  91. .response_box {
  92. background: #333333 !important;
  93. border-top: 1px solid #333333;
  94. border-radius:6px;
  95. }
  96.  
  97. /*-- Response box individual comments --*/
  98. .plurk_cnt {
  99. background: #333333;
  100. border-radius:6px;
  101. }
  102.  
  103. /*-- Response box lower area --*/
  104. .mini_form, .info_box {
  105. background-color: #333333;
  106. border-radius:6px;
  107. }
  108.  
  109. /*-- Change the text colour in your plurks (incl. comments) --*/
  110. .text_holder {
  111. color: #CCCCCC;
  112. }
  113.  
  114. a.ex_link {
  115. color: #ff6600;
  116. }
  117.  
  118. /*-- Usernames --*/
  119. .td_qual span a, .td_qual span a:hover, #timeline_cnt .name,
  120. a.user-nick, a.user-nick:hover {
  121. color: #CCCCCC!important;
  122. }
  123.  
  124. /*--Make Profile Pic big + Make Dashboard Awesome--*/
  125. #dash-profile {
  126. position : relative;
  127. }
  128.  
  129. #plurk-dashboard .dash-segment-profile #dash-profile img.profile-pic {
  130. width: 195px!important;
  131. height: 195px!important;
  132. position : relative;
  133. margin-left: 5px;
  134. margin-top: 5px;
  135. }
  136.  
  137. #plurk-dashboard .dash-segment-profile #dash-profile {
  138. height: initial!important;
  139. }
  140.  
  141. #plurk-dashboard .dash-segment-profile #dash-profile #full_name {
  142. margin: auto;
  143. padding-left: 5px;
  144. }
  145.  
  146. #plurk-dashboard .dash-segment-profile #dash-profile .profile-info {
  147. position : relative;
  148. margin-left: auto;
  149. margin-top: 2px;
  150. padding-left: 5px;
  151. padding-bottom: 5px
  152. }
  153.  
  154. #plurk-dashboard .dash-group-left {
  155. width: 225px;
  156. float : none;
  157. }
  158.  
  159. #plurk-dashboard .dash-group-form, #plurk-dashboard .dash-group-right {
  160. /* Firefox */
  161. width: -moz-calc(100% - 225px);
  162. /* WebKit */
  163. width: -webkit-calc(100% - 225px);
  164. /* Opera */
  165. width: -o-calc(100% - 225px);
  166. /* Standard */
  167. width: calc(100% - 225px);
  168. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement