| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- .row {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- margin-left: 28px;
- padding-left: 36px;
- margin-right: 28px;
- padding-right: 36px;
- position: relative;
- }
- .avatar {
- width: 80px;
- height: 80px;
- border-radius: 40px;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .btn {
- position: absolute;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- opacity: 0;
- }
- .avatar_row {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- margin-top: 40px;
- margin-bottom: 40px;
- margin-left: 46px;
- margin-right: 46px;
- }
- .avatar_bg {
- height: 240px;
- width: 240px;
- position: relative;
- }
- .avatar {
- height: 240px;
- width: 240px;
- border-radius: 120px;
- }
- .camera_bg {
- position: absolute;
- right: 26px;
- bottom: 0;
- width: 48px;
- height: 48px;
- background-color: #1c1c1c;
- border-radius: 24px;
- align-items: center;
- justify-content: center;
- display: flex;
- }
- .camera {
- width: 32px;
- height: 28px;
- }
|