posts-list.less 704 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // Posts List
  3. // --------------------------------------------------
  4. // Remove paddings and margins from items list
  5. .posts-list {
  6. margin: 0px;
  7. padding: 0px;
  8. clear: both;
  9. li {
  10. list-style: none;
  11. margin: 0px;
  12. padding: 0px;
  13. }
  14. }
  15. // Overflow auto the post border:
  16. .post-border {
  17. overflow: auto;
  18. }
  19. // Float left column and space it out
  20. .post-avatar {
  21. float: left;
  22. width: @post-avatar-size;
  23. text-align: right;
  24. }
  25. // Margin away post body
  26. .post-body {
  27. margin-left: @post-avatar-size + 12px;
  28. }
  29. // Mobile tweaks
  30. @media screen and (max-width: @screen-xs-max) {
  31. .posts-list .post-avatar-lg {
  32. display: none;
  33. }
  34. .posts-list .post-body {
  35. margin-left: 0px;
  36. }
  37. }