-
Notifications
You must be signed in to change notification settings - Fork 232
Expand file tree
/
Copy pathauthor.css
More file actions
67 lines (55 loc) · 1.09 KB
/
author.css
File metadata and controls
67 lines (55 loc) · 1.09 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
.author {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 4.5rem;
text-align: center;
}
.author-image-placeholder {
flex-shrink: 0;
width: 70px;
margin-bottom: 2rem;
overflow: hidden;
border-radius: 50%;
}
.author-name {
margin-bottom: 0;
font-size: 2.4rem;
}
.author-meta {
margin-top: 8px;
font-size: 1.2rem;
font-weight: 800;
color: var(--secondary-text-color);
text-transform: uppercase;
}
.author-bio {
max-width: 520px;
margin-top: 16px;
}
.author-social {
margin-top: 2rem;
}
.author-list {
display: flex;
}
.author-list .author-image-placeholder {
width: 54px;
margin: 0 -4px;
border: 2px solid var(--white-color);
}
.author-list .author-image-placeholder:first-child {
z-index: 10;
}
.author-list .author-image-placeholder:nth-child(2) {
z-index: 9;
}
.author-list .author-image-placeholder:nth-child(3) {
z-index: 8;
}
.author-list .author-image-placeholder:nth-child(4) {
z-index: 7;
}
.author-list .author-image-placeholder:nth-child(5) {
z-index: 6;
}