mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Add blockquote alternative card styling
This commit is contained in:
parent
1731723624
commit
f13a49233c
1 changed files with 29 additions and 0 deletions
29
core/frontend/src/cards/css/blockquote.css
Normal file
29
core/frontend/src/cards/css/blockquote.css
Normal file
|
@ -0,0 +1,29 @@
|
|||
blockquote.kg-blockquote-alt {
|
||||
background: none;
|
||||
font-size: 2.4rem;
|
||||
line-height: 1.7;
|
||||
text-align: center;
|
||||
color: var(--color-midgrey);
|
||||
padding: 1rem 8rem 1.5rem;
|
||||
border: 0 none;
|
||||
}
|
||||
|
||||
blockquote.kg-blockquote-alt::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
blockquote.kg-blockquote-alt {
|
||||
font-size: 2.2rem;
|
||||
padding-left: 6rem;
|
||||
padding-right: 6rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
blockquote.kg-blockquote-alt {
|
||||
font-size: 2rem;
|
||||
padding-left: 3rem;
|
||||
padding-right: 3rem;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue