-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsite.css
More file actions
86 lines (72 loc) · 1.14 KB
/
site.css
File metadata and controls
86 lines (72 loc) · 1.14 KB
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
.col2 {
columns: 2 200px;
-webkit-column: 2 200px;
-moz-columns: 2 200px;
}
.col3 {
columns: 3 100px;
-webkit-columns: 3 100px;
-moz-columns: 3 100px;
}
.forceBreak {
-webkit-column-break-after: always;
break-after: column;
}
.image-wrapper {
display: flex;
}
img {
max-width: 100%;
height: auto;
}
.site-footer {
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid #e5e5e5;
font-size: 0.95rem;
}
.people-list {
column-count: 2;
column-gap: 32px;
}
.person-card {
break-inside: avoid;
display: flex;
gap: 12px;
margin-bottom: 18px;
align-items: flex-start;
}
.person-photo {
border: 10px solid white;
width: 125px;
height: auto !important;
max-height: none;
object-fit: contain;
flex: 0 0 auto;
display: block;
align-self: flex-start;
}
.person-meta {
flex: 1 1 auto;
}
.person-name {
margin: 0;
font-weight: 600;
}
.person-links img {
vertical-align: middle;
}
@media (max-width: 900px) {
.people-list {
columns: 1 320px;
}
}
@media (max-width: 640px) {
.person-card {
flex-direction: column;
}
.person-photo {
width: 140px;
height: auto;
}
}