forked from indymedia/epicyon
Separator style
parent
046c8d29c2
commit
d3dc9632d4
|
@ -124,7 +124,8 @@
|
|||
--publish-button-vertical-offset: 10px;
|
||||
--banner-height: 15vh;
|
||||
--banner-height-mobile: 10vh;
|
||||
--post-separator-margin: 0;
|
||||
--post-separator-margin-top: 0;
|
||||
--post-separator-margin-bottom: 0;
|
||||
--post-separator-width: 95%;
|
||||
--post-separator-height: 1px;
|
||||
}
|
||||
|
@ -164,7 +165,8 @@ body, html {
|
|||
}
|
||||
|
||||
.postSeparatorImage img {
|
||||
margin: var(--post-separator-margin) 0;
|
||||
padding-top: var(--post-separator-margin-top);
|
||||
padding-bottom: var(--post-separator-margin-bottom);
|
||||
width: var(--post-separator-width);
|
||||
height: var(--post-separator-height);
|
||||
display: block;
|
||||
|
|
4
theme.py
4
theme.py
|
@ -462,6 +462,10 @@ def setThemeNight(baseDir: str):
|
|||
fontStrItalic = \
|
||||
"url('./fonts/solidaric-italic.woff2') format('woff2')"
|
||||
themeParams = {
|
||||
"post-separator-margin-top": "2%",
|
||||
"post-separator-margin-bottom": "2%",
|
||||
"post-separator-width": "80%",
|
||||
"post-separator-height": "10%",
|
||||
"column-left-header-background": "#07447c",
|
||||
"banner-height": "15vh",
|
||||
"banner-height-mobile": "10vh",
|
||||
|
|
Loading…
Reference in New Issue