media.less 652 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .media {
  2. // Proper spacing between instances of .media
  3. margin-top: 15px;
  4. &:first-child {
  5. margin-top: 0;
  6. }
  7. }
  8. .media-right,
  9. .media > .pull-right {
  10. padding-left: 10px;
  11. }
  12. .media-left,
  13. .media > .pull-left {
  14. padding-right: 10px;
  15. }
  16. .media-left,
  17. .media-right,
  18. .media-body {
  19. display: table-cell;
  20. vertical-align: top;
  21. }
  22. .media-middle {
  23. vertical-align: middle;
  24. }
  25. .media-bottom {
  26. vertical-align: bottom;
  27. }
  28. // Reset margins on headings for tighter default spacing
  29. .media-heading {
  30. margin-top: 0;
  31. margin-bottom: 5px;
  32. }
  33. // Media list variation
  34. //
  35. // Undo default ul/ol styles
  36. .media-list {
  37. padding-left: 0;
  38. list-style: none;
  39. }