Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. /* The reblog container */
  2. .post .reblog-list {
  3. padding-bottom: 15px;
  4. border-bottom: 1px solid #e7e7e7;
  5. }
  6.  
  7. /* Move the reblogs over. Lose some whitespace */
  8. .reblog-list-item {
  9. margin-left: 50px;
  10. padding: 5px 10px;
  11. border-left: 1px solid #e7e7e7;
  12. }
  13.  
  14. /* Keep the source at page width */
  15. .reblog-list-item.original-reblog-content {
  16. margin-left: 0;
  17. padding: 15px;
  18. border-left: none;
  19. }
  20.  
  21. /* Add alternating background colors to reblogs */
  22. .reblog-list-item:nth-child(even) {
  23. background-color: #f5f9fc;
  24. }
  25.  
  26. /* Remove the padding for the avatar, and lose some whitespace. */
  27. .reblog-list-item .reblog-header {
  28. line-height: inherit;
  29. margin-bottom: 3px;
  30. padding-left: 0;
  31. }
  32.  
  33. /* Removes the user's avatar */
  34. .post_content a.reblog-avatar {
  35. display: none;
  36. padding-left: 0;
  37. }
  38.  
  39. /* Specify username color in source post */
  40. .reblog-list-item.original-reblog-content a.reblog-tumblelog-name {
  41. color: #444;
  42. }
  43.  
  44. /* Specify username color in reblogs */
  45. .reblog-list-item a.reblog-tumblelog-name {
  46. color: #63A7D1;
  47. }
  48.  
  49. /* Fixes full-sizes images in reblogs */
  50. .post.is_regular .reblog-content .tmblr-full {
  51. margin-left: 0;
  52. margin-right: 0;
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement