summaryrefslogtreecommitdiff
path: root/static/css/club.css
blob: 78b3bffa5a0f7b766c4052556f1d8fd07d3d01ad (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
.club-members {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
}

.club-member {
  background-color: var(--background-color-2);
  border: 1px solid var(--border-color);
}

.club-member-name {
  font-size: 1.5em;
  font-weight: bold;
}

.club-bio {
  padding: .5rem;
  min-height: 3rem;
}

.avatar {
  float: left;
  width: 40%;
  margin: .5rem;
  margin-bottom: -.6rem;
  padding-bottom: .6rem;
}

.avatar > img {
  width: -moz-available;
  width: -webkit-fill-available; /* we live in a society */
  border-radius: 1rem;
}

.about {
  background: var(--text-color);
  color: var(--background-color);
  font-weight: bold;
  padding: .5rem;
}

.about a, .about a:visited {
  color: var(--background-color);
  text-decoration: underline dotted;
}

.text-muted {
  opacity: .8;
  font-weight: normal;
}

.bolder {
  font-weight: bolder;
}