File size: 1,463 Bytes
727a40a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
.profile_box {
    background: var(--bg-color);
    width: 100%;
    max-width: 450px;
    max-height: 900px;
    display: flex;
    height: calc(var(--vh, 1vh) * 100);
    flex-direction: column;
    box-shadow: 0 8px 16px var(--shadow-color);
}

.profile-container {
    width: 100%;
    padding: 50px 20px;
    text-align: center;
    height: 100%;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid var(--highlight-color);
}

.username {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    color: var(--highlight-color);
}

.user-status {
    font-size: 14px;
    color: var(--text-color);
    margin-top: 5px;
}

.status-online {
    color: var(--status-online)
}

.status-offline {
    color: var(--status-offline);
}

.bio {
    margin-top: 15px;
    font-size: 16px;
    color: var(--text-color);
    text-align: center;
    font-style: italic;
}

.profile-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    font-size: 16px;
    color: var(--text-color);
}

.profile-stats div {
    text-align: center;
}

.profile-stats div strong {
    font-size: 18px;
    color: var(--highlight-color);
}

.user-details {
    margin-top: 20px;
    text-align: left;
}

.user-details p {
    margin: 10px 0;
    font-size: 16px;
    color: var(--text-color);
}

.user-details span {
    font-weight: bold;
    color: var(--highlight-color);
}