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