mirror of https://gitlab.com/bashrc2/epicyon
Adjustable quote margin
parent
1536d3b9c5
commit
416c206aea
|
@ -57,6 +57,7 @@
|
||||||
--icons-side: right;
|
--icons-side: right;
|
||||||
--title-color: #999;
|
--title-color: #999;
|
||||||
--focus-color: white;
|
--focus-color: white;
|
||||||
|
--quote-right-margin: 0.25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
|
@ -105,6 +106,7 @@ blockquote:after {
|
||||||
content: close-quote;
|
content: close-quote;
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
line-height: 0.1em;
|
line-height: 0.1em;
|
||||||
|
margin-left: var(--quote-right-margin);
|
||||||
vertical-align: -0.4em;
|
vertical-align: -0.4em;
|
||||||
}
|
}
|
||||||
blockquote p {
|
blockquote p {
|
||||||
|
|
2
theme.py
2
theme.py
|
@ -375,6 +375,7 @@ def setThemeStarlight(baseDir: str):
|
||||||
"place-color": "#ffc4bc",
|
"place-color": "#ffc4bc",
|
||||||
"event-color": "#ffc4bc",
|
"event-color": "#ffc4bc",
|
||||||
"image-corners": "2%",
|
"image-corners": "2%",
|
||||||
|
"quote-right-margin": "0.25em",
|
||||||
"*font-family": "'bgrove'",
|
"*font-family": "'bgrove'",
|
||||||
"*src": "url('fonts/bgrove.woff2') format('woff2')"
|
"*src": "url('fonts/bgrove.woff2') format('woff2')"
|
||||||
}
|
}
|
||||||
|
@ -777,6 +778,7 @@ def setThemeSolidaric(baseDir: str):
|
||||||
"title-text": "#282c37",
|
"title-text": "#282c37",
|
||||||
"title-background": "#ccc",
|
"title-background": "#ccc",
|
||||||
"gallery-text-color": "black",
|
"gallery-text-color": "black",
|
||||||
|
"quote-right-margin": "0",
|
||||||
"*font-family": "'solidaric'",
|
"*font-family": "'solidaric'",
|
||||||
"*src": "url('./fonts/solidaric.woff2') format('woff2')",
|
"*src": "url('./fonts/solidaric.woff2') format('woff2')",
|
||||||
"**src": "url('./fonts/solidaric-italic.woff2') format('woff2')"
|
"**src": "url('./fonts/solidaric-italic.woff2') format('woff2')"
|
||||||
|
|
Loading…
Reference in New Issue