No Description
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.

_card-profile.scss 853B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //
  2. // Profile card
  3. //
  4. .card-profile-image {
  5. position: relative;
  6. img {
  7. max-width: 180px;
  8. border-radius: $border-radius;
  9. @extend .shadow;
  10. transform: translate(-50%,-30%);
  11. position: absolute;
  12. left: 50%;
  13. transition: $transition-base;
  14. &:hover {
  15. transform: translate(-50%, -33%);
  16. }
  17. }
  18. }
  19. .card-profile-stats {
  20. padding: 1rem 0;
  21. > div {
  22. text-align: center;
  23. margin-right: 1rem;
  24. padding: .875rem;
  25. &:last-child {
  26. margin-right: 0;
  27. }
  28. .heading {
  29. font-size: 1.1rem;
  30. font-weight: bold;
  31. display: block;
  32. }
  33. .description {
  34. font-size: .875rem;
  35. color: $gray-500;
  36. }
  37. }
  38. }
  39. .card-profile-actions {
  40. padding: .875rem;
  41. }