Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .card {
  2. margin-bottom: $grid-gutter-width;
  3. box-shadow: $card-shadow;
  4. }
  5. .card-header {
  6. border-bottom-width: 1px;
  7. }
  8. .card-title {
  9. font-size: $card-title-font-size;
  10. font-weight: $card-title-font-weight;
  11. color: $card-title-color;
  12. }
  13. .card-subtitle {
  14. font-weight: $font-weight-normal;
  15. }
  16. .card-table {
  17. margin-bottom: 0;
  18. }
  19. .card-table tr td:first-child,
  20. .card-table tr th:first-child {
  21. padding-left: $card-spacer-x;
  22. }
  23. .card-table tr td:last-child,
  24. .card-table tr th:last-child {
  25. padding-right: $card-spacer-x;
  26. }
  27. .card-img,
  28. .card-img-top,
  29. .card-img-bottom {
  30. @include img-fluid;
  31. @media all and (-ms-high-contrast:none) {
  32. height: 100%;
  33. }
  34. }