aboutsummaryrefslogtreecommitdiffhomepage
path: root/static/profile.css
blob: 028c69c41849e458364fe945e1d380fd76363335 (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
.fullProfile {
  border-radius: 8px;
  margin: 16px;
  padding: 16px;
  border: 1px solid #23f4;
  background: #e6eaff44;

  .basicInfo {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    gap: 16px;

    img.avatar {
      width: 96px;
      aspect-ratio: 1;
    }
    .displayName {
      font-size: 16pt;
      font-weight: bold;
    }
    .handle,
    .joinedDate {
      font-size: 10pt;
    }
  }
}