@sorrel340/gatsby-theme-portfolio-minimal
Version:
#### A modern one-page portfolio with a clean yet expressive design.
44 lines (38 loc) • 805 B
CSS
.AuthorSnippet {
width: 100%;
max-width: 660px;
padding: 0;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: flex-start;
}
.AuthorSnippet .Avatar {
width: 100px;
height: 100px;
border-radius: 50%;
}
.AuthorSnippet .Description {
width: 100%;
margin-top: 1rem;
}
.AuthorSnippet .WrittenBy {
font-size: 0.875rem;
letter-spacing: +0.5px;
color: var(--subtext-color);
}
.AuthorSnippet .Bio {
margin: 0.5rem 0;
}
@media screen and (min-width: 768px) {
.AuthorSnippet {
padding: var(--page-padding);
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.AuthorSnippet .Description {
width: 100%;
max-width: 27.5rem;
}
}