-
Notifications
You must be signed in to change notification settings - Fork 0
/
dstyle.css
49 lines (40 loc) · 809 Bytes
/
dstyle.css
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
.img-wrapper {
border-radius: 100%;
overflow: hidden;
border: var(--border-dark);
aspect-ratio: 1/1;
}
.img-wrapper img {
object-fit: contain;
}
main h2 {
font-size: var(--font-xl);
font-weight: var(--font-bold);
text-transform: capitalize;
}
table {
border-collapse: collapse;
padding: 1rem;
border: var(--border-light);
border-radius: 0.5rem;
display: block;
overflow: hidden;
font-size: var(--font-sm);
}
tr {
border-bottom: var(--border-light);
}
tr:last-child {
border-bottom: none;
}
td {
padding: 0.8rem;
}
td:first-child {
font-weight: var(--font-bold);
text-transform: capitalize;
}
td:last-child {
text-align: right;
color: var(--text-color-light);
}