blob: 7631b08ab612cd5031324ad3cc2b9d2cc8e5c44c (
plain)
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
88
89
90
|
main {
background: transparent;
}
.headerimage img {
width: 100%;
height: 15em;
object-fit: cover;
border-radius: 10px;
}
.profile {
position: relative;
background: rgb(75, 84, 93);
padding: 2rem;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
gap: 0.5rem;
margin-bottom: 0.2rem;
}
.profile .basic {
display: flex;
flex-direction: column;
flex: 1 1 25em;
gap: 0.5rem;
}
.profile .basic a {
position: relative;
z-index: 1;
color: inherit;
text-decoration: none;
}
.profile .basic .avatar img {
height: 25em;
width: 25em;
object-fit: cover;
border-radius: 10px;
}
.profile .basic .displayname {
font-weight: bold;
font-size: 1.6rem;
align-self: start;
}
.profile .detailed {
display: flex;
flex-direction: column;
flex: 1 1 25em;
}
.profile .detailed h2 {
margin-top: 0;
}
.profile .detailed .bio {
margin: 0;
}
.profile .detailed .bio a {
color: #de8957;
text-decoration: underline;
}
.accountstats {
position: relative;
background: rgb(75, 84, 93);
padding: 0.5rem;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
gap: 0.5rem;
margin-bottom: 0.2rem;
}
.accountstats .entry {
background: rgb(89, 99, 110);
padding: 0.5rem;
flex-grow: 1;
text-align: center;
}
footer + div {
/* something weird from the devstack.. */
display: none;
}
|