mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-31 23:54:25 +00:00
* feat(v2): implement blog * expect flat blog structure * \n * blogpage can import many posts
41 lines
519 B
CSS
41 lines
519 B
CSS
.postHeader {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.postHeaderTitle {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.postMeta {
|
|
margin-bottom: 10px;
|
|
padding: 0;
|
|
}
|
|
|
|
.authorBlock {
|
|
display: flex;
|
|
}
|
|
|
|
.authorName {
|
|
color: rgba(57, 57, 57, 0.7);
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
justify-content: center;
|
|
margin-right: 10px;
|
|
margin-top: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.authorPhoto {
|
|
border-radius: 50%;
|
|
height: 30px;
|
|
overflow: hidden;
|
|
width: 30px;
|
|
}
|
|
|
|
.authorPhotoBig {
|
|
height: 50px;
|
|
width: 50px;
|
|
}
|