Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | .author-bio {
display: flex;
gap: 1rem;
align-items: flex-start;
padding: 1.5rem;
background: #f8f9fa;
border: 1px solid #e9ecef;
border-radius: 12px;
}
.author-avatar {
flex-shrink: 0;
img {
width: 64px;
height: 64px;
object-fit: cover;
border-radius: 50%;
}
}
.author-info {
flex: 1;
}
.author-name {
display: block;
margin-bottom: 0.25rem;
font-size: 1rem;
}
.author-description {
margin-bottom: 0.5rem;
font-size: 0.875rem;
line-height: 1.5;
color: #555;
}
.author-links {
display: flex;
gap: 1rem;
a {
font-size: 0.8rem;
color: #0a58ca;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
.author-bio-wrapper {
margin-top: 1.5rem;
}
.author-bio-heading {
padding-bottom: 0.5rem;
margin-bottom: 1rem;
font-size: 1.2rem;
border-bottom: 1px solid #e9ecef;
}
|