mirror of https://gitlab.com/bashrc2/epicyon
More line spacing
parent
99893e5e23
commit
0737da1694
|
@ -43,6 +43,7 @@
|
||||||
--button-corner-radius: 15px;
|
--button-corner-radius: 15px;
|
||||||
--timeline-border-radius: 30px;
|
--timeline-border-radius: 30px;
|
||||||
--focus-color: white;
|
--focus-color: white;
|
||||||
|
--line-spacing: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
|
@ -70,6 +71,7 @@ body, html {
|
||||||
min-width: 950px;
|
min-width: 950px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
font-size: var(--font-size);
|
font-size: var(--font-size);
|
||||||
|
line-height: var(--line-spacing);
|
||||||
}
|
}
|
||||||
|
|
||||||
a, u {
|
a, u {
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
--button-selected: #666;
|
--button-selected: #666;
|
||||||
--form-border-radius: 30px;
|
--form-border-radius: 30px;
|
||||||
--focus-color: white;
|
--focus-color: white;
|
||||||
|
--line-spacing: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
|
@ -53,6 +54,7 @@ body, html {
|
||||||
min-width: 600px;
|
min-width: 600px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
font-size: var(--font-size);
|
font-size: var(--font-size);
|
||||||
|
line-height: var(--line-spacing);
|
||||||
}
|
}
|
||||||
|
|
||||||
a, u {
|
a, u {
|
||||||
|
|
|
@ -59,6 +59,7 @@
|
||||||
--focus-color: white;
|
--focus-color: white;
|
||||||
--quote-right-margin: 0.25em;
|
--quote-right-margin: 0.25em;
|
||||||
--quote-font-weight: bold;
|
--quote-font-weight: bold;
|
||||||
|
--line-spacing: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
@font-face {
|
||||||
|
@ -86,6 +87,7 @@ body, html {
|
||||||
min-width: 950px;
|
min-width: 950px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
font-size: var(--font-size);
|
font-size: var(--font-size);
|
||||||
|
line-height: var(--line-spacing);
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
|
|
2
theme.py
2
theme.py
|
@ -316,6 +316,7 @@ def setThemeNight(baseDir: str):
|
||||||
"event-color": "#a961ab",
|
"event-color": "#a961ab",
|
||||||
"event-background": "#333",
|
"event-background": "#333",
|
||||||
"quote-right-margin": "0",
|
"quote-right-margin": "0",
|
||||||
|
"line-spacing": "150%",
|
||||||
"*font-family": "'solidaric'",
|
"*font-family": "'solidaric'",
|
||||||
"*src": fontStr,
|
"*src": fontStr,
|
||||||
"**src": fontStrItalic
|
"**src": fontStrItalic
|
||||||
|
@ -781,6 +782,7 @@ def setThemeSolidaric(baseDir: str):
|
||||||
"title-background": "#ccc",
|
"title-background": "#ccc",
|
||||||
"gallery-text-color": "black",
|
"gallery-text-color": "black",
|
||||||
"quote-right-margin": "0",
|
"quote-right-margin": "0",
|
||||||
|
"line-spacing": "150%",
|
||||||
"*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