forked from yevi.org/Ghost_Ruby_Theme
15402ebadc
* Added support for hiding page title and feature image Refs https://github.com/TryGhost/Product/issues/3568
34 lines
533 B
CSS
34 lines
533 B
CSS
.gh-article {
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.page-template .gh-article {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.gh-article-meta {
|
|
margin-bottom: 12px;
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
color: var(--secondary-text-color);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.gh-article-tag {
|
|
color: var(--tag-color, var(--ghost-accent-color));
|
|
}
|
|
|
|
.gh-article-title {
|
|
font-size: 3rem;
|
|
line-height: 1.4;
|
|
letter-spacing: -0.03em;
|
|
}
|
|
|
|
.gh-article-excerpt {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.gh-article-image {
|
|
grid-column: main-start / main-end;
|
|
}
|