| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- .card {
- display: flex;
- flex-direction: column;
- padding-left: 40px;
- padding-right: 40px;
- padding-top: 34px;
- padding-bottom: 34px;
- border-radius: 36px;
- border-color: #323232;
- border-width: 1px;
- border-style: solid;
- margin-left: 46px;
- margin-right: 46px;
- margin-bottom: 40px;
- position: relative;
- }
- .profile_card {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .balance {
- display: flex;
- flex-direction: column;
- }
- .avatar {
- width: 180px;
- height: 180px;
- border-radius: 90px;
- background-color: #fff;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .avatar_placeholder {
- width: 100px;
- height: 100px;
- }
- .nickname {
- font-size: 40px;
- color: #fff;
- margin-top: 24px;
- line-height: 40px;
- height: 40px;
- }
- .username {
- color: #9E9E9E;
- font-size: 28px;
- line-height: 32px;
- height: 32px;
- margin-top: 10px;
- }
- .title {
- font-size: 28px;
- line-height: 28px;
- color: #fff;
- }
- .desc {
- margin-top: 20px;
- color: #FFFFFF;
- opacity: 0.4;
- font-size: 24px;
- line-height: 32px;
- }
|