_cards.scss 580 B

123456789101112131415161718192021222324252627282930313233
  1. // Cards
  2. .card {
  3. box-shadow: $z-depth-1;
  4. border: 0;
  5. font-weight: 400;
  6. &[class*="border"] {
  7. border: 1px solid $grey-base;
  8. box-shadow: none;
  9. }
  10. .card-body {
  11. h1, h2, h3, h4, h5, h6 {
  12. font-weight: 400;
  13. }
  14. .card-title {
  15. a {
  16. transition: $md-card-link-transition;
  17. &:hover {
  18. transition: $md-card-link-transition;
  19. }
  20. }
  21. }
  22. .card-text {
  23. color: $md-card-text-color;
  24. font-size: $md-card-font-size;
  25. font-weight: 400;
  26. }
  27. }
  28. .md-form {
  29. label {
  30. font-weight: 300;
  31. }
  32. }
  33. }