-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
81 lines (66 loc) · 1.54 KB
/
custom.css
File metadata and controls
81 lines (66 loc) · 1.54 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
/* Staff page styling */
.staff-person-card {
display: flex;
gap: 1.5rem;
align-items: flex-start;
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 1px solid #eee;
}
.staff-person-photo {
flex-shrink: 0;
width: 150px;
}
.staff-person-photo img {
width: 100%;
height: auto;
border-radius: 50%;
aspect-ratio: 1;
object-fit: cover;
}
.staff-person-info {
flex: 1;
}
.staff-person-card-no-photo {
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 1px solid #eee;
}
/* Schedule table consistent column alignment */
.myst-card-body table.schedule-table {
display: table;
width: 100%;
table-layout: fixed;
}
.myst-card-body table.schedule-table tbody {
display: table-row-group;
}
.myst-card-body table.schedule-table tr {
display: table-row;
}
.myst-card-body table.schedule-table td {
display: table-cell;
vertical-align: top;
}
.myst-card-body table.schedule-table td:nth-child(1) {
width: 12%;
}
.myst-card-body table.schedule-table td:nth-child(2) {
width: 35%;
}
/* Target only the type column spans specifically */
table.schedule-table tbody tr td:nth-child(2) span {
text-transform: uppercase !important;
font-weight: bold !important;
}
/* For rows without date column, target first column spans */
table.schedule-table tbody tr:not(:first-child) td:nth-child(1) span {
text-transform: uppercase !important;
font-weight: bold !important;
}
.myst-card-body table.schedule-table td:nth-child(3) {
width: 35%;
}
.myst-card-body table.schedule-table td:nth-child(4) {
width: 18%;
}