mirror of
https://github.com/GenZmeY/casper-i18n.git
synced 2025-07-12 16:56:06 +00:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
7e9cf5c478 | |||
0f9a3c79c1 | |||
8ff91f709e | |||
feb2de765c | |||
9b45ff3418 | |||
827f37255c |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -556,6 +556,12 @@ body:not(.gh-head-open) .gh-burger:hover .gh-burger-inner::after {
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
@media (max-width: 700px) {
|
||||
.post-card {
|
||||
min-height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
.post-card-image-link {
|
||||
position: relative;
|
||||
display: block;
|
||||
@ -750,6 +756,30 @@ make sure this only happens on large viewports / desktop-ish devices.
|
||||
|
||||
*/
|
||||
|
||||
@media (min-width: 701px) {
|
||||
.post-feed.list .post-card-large {
|
||||
grid-column: 1 / span 3;
|
||||
display: grid;
|
||||
grid-gap: 4vmin;
|
||||
grid-template-columns: 3fr 5fr;
|
||||
min-height: auto;
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
.post-feed.list .post-card-large.no-image {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.post-feed.list .post-card-large:not(.no-image) .post-card-header {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.post-feed.list .post-card-large .post-card-content {
|
||||
justify-content: flex-start;
|
||||
margin-top: -6px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1001px) {
|
||||
.post-card-large {
|
||||
grid-column: 1 / span 3;
|
||||
@ -760,15 +790,6 @@ make sure this only happens on large viewports / desktop-ish devices.
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
.post-feed.list .post-card-large {
|
||||
grid-template-columns: 3fr 5fr;
|
||||
min-height: auto;
|
||||
}
|
||||
|
||||
.post-feed.list .post-card-large.no-image {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.post-card-large:not(.no-image) .post-card-header {
|
||||
margin-top: 0;
|
||||
}
|
||||
@ -802,11 +823,6 @@ make sure this only happens on large viewports / desktop-ish devices.
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.post-feed.list .post-card-large .post-card-content {
|
||||
justify-content: flex-start;
|
||||
margin-top: -6px;
|
||||
}
|
||||
|
||||
.post-card-large .post-card-title {
|
||||
margin-top: 0;
|
||||
font-size: 3.2rem;
|
||||
@ -995,16 +1011,12 @@ is the very first element in the post content */
|
||||
}
|
||||
|
||||
/* Now the content typography styles */
|
||||
.gh-content a:not(.gh-post-upgrade-cta a):not(.kg-bookmark-container):not(.kg-btn):not(.kg-nft-card-container):not(.kg-callout-card-accent a):not(a.kg-product-card-btn-accent) {
|
||||
.gh-content a {
|
||||
color: var(--ghost-accent-color);
|
||||
text-decoration: underline;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.gh-content .kg-callout-card-accent a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.gh-content > blockquote:not([class]),
|
||||
.gh-content > ol,
|
||||
.gh-content > ul,
|
||||
@ -1016,23 +1028,30 @@ is the very first element in the post content */
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
.gh-content .kg-callout-text,
|
||||
.gh-content .kg-toggle-content > ol,
|
||||
.gh-content .kg-toggle-content > ul,
|
||||
.gh-content .kg-toggle-content > p {
|
||||
.gh-content .kg-callout-card .kg-callout-text,
|
||||
.gh-content .kg-toggle-card .kg-toggle-content > ol,
|
||||
.gh-content .kg-toggle-card .kg-toggle-content > ul,
|
||||
.gh-content .kg-toggle-card .kg-toggle-content > p {
|
||||
font-family: var(--font-serif);
|
||||
font-weight: 400;
|
||||
font-size: 2.0rem;
|
||||
font-size: 1.9rem;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
.gh-content .kg-callout-emoji {
|
||||
font-size: 2.2rem;
|
||||
line-height: 1.5em;
|
||||
.gh-content .kg-product-card .kg-product-card-description > p,
|
||||
.gh-content .kg-product-card .kg-product-card-description > ol,
|
||||
.gh-content .kg-product-card .kg-product-card-description > ul {
|
||||
font-size: 1.7rem;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
.gh-content .kg-toggle-heading-text {
|
||||
font-size: 2.2rem;
|
||||
.gh-content .kg-callout-card .kg-callout-emoji {
|
||||
font-size: 2.1rem;
|
||||
line-height: 1.4em;
|
||||
}
|
||||
|
||||
.gh-content .kg-toggle-card .kg-toggle-heading-text {
|
||||
font-size: 2.0rem;
|
||||
}
|
||||
|
||||
.has-sans-body .gh-content > blockquote,
|
||||
@ -1040,16 +1059,20 @@ is the very first element in the post content */
|
||||
.has-sans-body .gh-content > ul,
|
||||
.has-sans-body .gh-content > dl,
|
||||
.has-sans-body .gh-content > p,
|
||||
.has-sans-body .kg-callout-text,
|
||||
.has-sans-body .kg-toggle-content > ol,
|
||||
.has-sans-body .kg-toggle-content > ul,
|
||||
.has-sans-body .kg-toggle-content > p {
|
||||
.has-sans-body .gh-content .kg-callout-card .kg-callout-text,
|
||||
.has-sans-body .gh-content .kg-toggle-card .kg-toggle-content > ol,
|
||||
.has-sans-body .gh-content .kg-toggle-card .kg-toggle-content > ul,
|
||||
.has-sans-body .gh-content .kg-toggle-card .kg-toggle-content > p {
|
||||
font-family: var(--font-sans);
|
||||
}
|
||||
|
||||
.gh-content > ul,
|
||||
.gh-content > ol,
|
||||
.gh-content > dl {
|
||||
.gh-content > dl,
|
||||
.gh-content .kg-toggle-card .kg-toggle-content > ol,
|
||||
.gh-content .kg-toggle-card .kg-toggle-content > ul,
|
||||
.gh-content .kg-product-card .kg-product-card-description > ol,
|
||||
.gh-content .kg-product-card .kg-product-card-description > ul {
|
||||
padding-left: 1.9em;
|
||||
}
|
||||
|
||||
@ -1098,14 +1121,20 @@ is the very first element in the post content */
|
||||
.gh-content > ul,
|
||||
.gh-content > dl,
|
||||
.gh-content > p,
|
||||
.kg-callout-text,
|
||||
.kg-toggle-content > ol,
|
||||
.kg-toggle-content > ul,
|
||||
.kg-toggle-content > p {
|
||||
.gh-content .kg-callout-card .kg-callout-text,
|
||||
.gh-content .kg-toggle-card .kg-toggle-content > ol,
|
||||
.gh-content .kg-toggle-card .kg-toggle-content > ul,
|
||||
.gh-content .kg-toggle-card .kg-toggle-content > p {
|
||||
font-size: 1.7rem;
|
||||
}
|
||||
|
||||
.gh-content blockquote::before {
|
||||
.gh-content .kg-product-card .kg-product-card-description > p,
|
||||
.gh-content .kg-product-card .kg-product-card-description > ol,
|
||||
.gh-content .kg-product-card .kg-product-card-description > ul {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.gh-content blockquote:not([class])::before {
|
||||
left: -4vmin;
|
||||
}
|
||||
}
|
||||
@ -1143,12 +1172,12 @@ except for when immediately preceeded by a heading */
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.has-serif-title .kg-toggle-heading-text {
|
||||
.has-serif-title .kg-toggle-card .kg-toggle-heading-text {
|
||||
font-family: var(--font-serif);
|
||||
}
|
||||
|
||||
.kg-toggle-content > * + * {
|
||||
margin-top: min(2.4rem, 4vmin);
|
||||
.gh-content .kg-callout-card-accent a {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.kg-blockquote-alt {
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "casper",
|
||||
"description": "A clean, minimal default theme for the Ghost publishing platform",
|
||||
"demo": "https://demo.ghost.io",
|
||||
"version": "4.5.0",
|
||||
"version": "4.6.1",
|
||||
"engines": {
|
||||
"ghost": ">=4.0.0",
|
||||
"ghost-api": "v4"
|
||||
|
Reference in New Issue
Block a user