Advertisement
ch1ps0h0y

Plurk comment background

Feb 4th, 2016
722
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. /*-- Response box background --*/
  2. .response_box {
  3. background: #ddd;
  4. border-top: 1px solid #000;
  5. }
  6.  
  7. /*-- Response box individual comments --*/
  8. .plurk_cnt {
  9. background: #f00 !important;
  10. }
  11.  
  12. /*-- Response box lower area --*/
  13. .mini_form, .info_box {
  14. background-color: #0f0;
  15. }
  16.  
  17. /*-- Change the text colour in your plurks (incl. comments) --*/
  18. .text_holder {
  19. color: #ddd;
  20. }
  21.  
  22. a.ex_link {
  23. color: #ff6600;
  24. }
  25.  
  26. /*-- Default username colour --*/
  27. .name {
  28. color: #fff;
  29. }
  30.  
  31. NOTES --
  32. + The first one defines the colour of the background of the box overall.
  33. (the 'border-top' line defines the colour between the top plurk and the comment box below, you can remove it or change the colour)
  34.  
  35. + The second set defines the colour of the bubbles which user comments come in.
  36. (the !important here stops the 'new comment' animation from running its full course so that the box 'pulses')
  37.  
  38. + The last set defines the colour of the box around the comment area you type in.
  39. (.info_box specifically targets the bar with the 'report abuse/link' text)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement