50 lines
816 B
CSS
50 lines
816 B
CSS
.gh-article-meta {
|
|
margin-top: 2rem;
|
|
font-size: 1.2rem;
|
|
font-weight: 500;
|
|
line-height: 1;
|
|
color: var(--color-secondary-text);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.gh-article-meta a {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.gh-article-meta>*+ :not(script)::before {
|
|
background-color: var(--color-secondary-text);
|
|
border-radius: 50%;
|
|
content: "";
|
|
height: 2px;
|
|
width: 2px;
|
|
}
|
|
|
|
.gh-card-meta>* {
|
|
align-items: center;
|
|
display: flex;
|
|
gap: 6px;
|
|
}
|
|
|
|
.gh-article-title {
|
|
font-weight: 600;
|
|
line-height: 1;
|
|
}
|
|
|
|
.gh-article-excerpt {
|
|
max-width: 920px;
|
|
margin-top: 1.6rem;
|
|
line-height: 1.35;
|
|
color: var(--color-darker-gray);
|
|
}
|
|
|
|
.gh-article-footer {
|
|
padding-top: 3.2rem;
|
|
margin-top: 8rem;
|
|
border-top: 1px solid var(--color-light-gray);
|
|
}
|
|
|
|
.gh-article-footer.no-border {
|
|
margin-top: 24px;
|
|
border-top: 0;
|
|
}
|