card.less 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .card {
  2. background-color: white;
  3. border-radius: @border-radius-base;
  4. box-shadow: @card-box-shadow;
  5. padding: @line-height-computed;
  6. .page-header {
  7. margin: 0 0 1.5625rem;
  8. h1, h2, h3 {
  9. margin-top: 0;
  10. }
  11. }
  12. > .container-fluid {
  13. padding: 0;
  14. }
  15. .card-header {
  16. border-bottom: 1px solid @gray-lighter;
  17. padding-bottom: @line-height-computed;
  18. margin-bottom: @line-height-computed;
  19. h2 {
  20. margin: 0;
  21. }
  22. }
  23. > :first-child {
  24. margin-top: 0;
  25. }
  26. > :last-child {
  27. margin-bottom: 0;
  28. }
  29. }
  30. .card-thin {
  31. padding: @line-height-computed / 2
  32. }
  33. .card-group {
  34. .card {
  35. margin: @line-height-computed -15px 0 -15px;
  36. border-radius: 0;
  37. &.card-highlighted {
  38. // Make it taller and card like
  39. margin-top: 0;
  40. border-radius: @border-radius-base;
  41. }
  42. &.card-first {
  43. border-top-left-radius: @border-radius-base;
  44. border-bottom-left-radius: @border-radius-base;
  45. }
  46. &.card-last {
  47. border-top-right-radius: @border-radius-base;
  48. border-bottom-right-radius: @border-radius-base;
  49. }
  50. }
  51. }
  52. .card-border {
  53. border: @border-width-base solid @border-color-base;
  54. }
  55. .card-content {
  56. padding: @padding-md;
  57. }