profile.scss 634 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. @import "colors";
  2. @import "breakpoints";
  3. main#profile {
  4. color: $musare_color_primary_gray;
  5. img {
  6. width: 128px;
  7. height: 128px;
  8. display: block;
  9. margin: 0 auto 16px;
  10. border-radius: 100%;
  11. }
  12. p {
  13. text-align: center;
  14. font-size: 17px;
  15. line-height: 22px;
  16. margin-bottom: 16px;
  17. }
  18. .profile-details-list {
  19. margin-bottom: 24px;
  20. > span {
  21. display: block;
  22. margin-bottom: 16px;
  23. b, span {
  24. display: block;
  25. text-align: center;
  26. }
  27. b {
  28. font-weight: 500;
  29. font-size: 18px;
  30. line-height: 24px;
  31. margin-bottom: 8px;
  32. }
  33. span {
  34. font-size: 16px;
  35. line-height: 21px;
  36. }
  37. }
  38. }
  39. }