Profile.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .card {
  2. display: flex;
  3. flex-direction: column;
  4. padding-left: 40px;
  5. padding-right: 40px;
  6. padding-top: 34px;
  7. padding-bottom: 34px;
  8. border-radius: 36px;
  9. border-color: #323232;
  10. border-width: 1px;
  11. border-style: solid;
  12. margin-left: 46px;
  13. margin-right: 46px;
  14. margin-bottom: 40px;
  15. position: relative;
  16. }
  17. .profile_card {
  18. display: flex;
  19. flex-direction: column;
  20. align-items: center;
  21. }
  22. .balance {
  23. display: flex;
  24. flex-direction: column;
  25. }
  26. .avatar {
  27. width: 180px;
  28. height: 180px;
  29. border-radius: 90px;
  30. background-color: #fff;
  31. display: flex;
  32. align-items: center;
  33. justify-content: center;
  34. }
  35. .avatar_placeholder {
  36. width: 100px;
  37. height: 100px;
  38. }
  39. .nickname {
  40. font-size: 40px;
  41. color: #fff;
  42. margin-top: 24px;
  43. line-height: 40px;
  44. height: 40px;
  45. }
  46. .username {
  47. color: #9E9E9E;
  48. font-size: 28px;
  49. line-height: 32px;
  50. height: 32px;
  51. margin-top: 10px;
  52. }
  53. .title {
  54. font-size: 28px;
  55. line-height: 28px;
  56. color: #fff;
  57. }
  58. .desc {
  59. margin-top: 20px;
  60. color: #FFFFFF;
  61. opacity: 0.4;
  62. font-size: 24px;
  63. line-height: 32px;
  64. }