blob: a97e2271db7050612dd899577f02256a33cbb307 (
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
|
#things {
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 0.5rem;
row-gap: 0.5rem;
}
.profile {
display: inline-block;
border: 1px solid var(--background-dim);
padding: 0.5rem;
}
@media (max-width: 38rem) {
#things {
display: flex;
flex-direction: column;
}
}
.profile-heading {
display: grid;
grid-template-columns: min-content 1fr;
column-gap: 0.5rem;
}
.profile-heading img {
aspect-ratio: 1 / 1;
width: 5rem;
height: 5rem;
grid-row: 1 / 3;
}
.profile-heading h2 {
grid-column: 2;
align-self: flex-end;
font-weight: normal;
}
.profile-heading h2>a {
color: inherit;
text-decoration: underline;
text-decoration-skip-ink: all;
text-decoration-style: dotted;
}
.profile-heading h3 {
grid-column: 2;
font-style: italic;
font-weight: normal;
text-align: right;
}
.profile p {
margin: 1rem 0 0 0;
}
|