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