mirror of https://gitlab.com/bashrc2/epicyon
Optionally ordinary style for links column headers
parent
493f6b2b29
commit
3f0b5f3c93
|
@ -83,6 +83,7 @@
|
|||
--column-left-width: 10vw;
|
||||
--column-center-width: 80vw;
|
||||
--column-right-width: 10vw;
|
||||
--column-left-header-style: uppercase;
|
||||
--column-left-header-background: #555;
|
||||
--column-left-header-color: #fff;
|
||||
--column-left-header-size: 20px;
|
||||
|
@ -902,7 +903,7 @@ div.container {
|
|||
background-color: var(--column-left-header-background);
|
||||
color: var(--column-left-header-color);
|
||||
font-size: var(--column-left-header-size);
|
||||
text-transform: uppercase;
|
||||
text-transform: var(--column-left-header-style);
|
||||
padding: 4px;
|
||||
border: none;
|
||||
}
|
||||
|
|
2
theme.py
2
theme.py
|
@ -1019,6 +1019,8 @@ def setThemeIndymediaModern(baseDir: str):
|
|||
fontStrItalic = \
|
||||
"url('./fonts/NimbusSanL-italic.otf') format('opentype')"
|
||||
themeParams = {
|
||||
"column-left-header-background": "white",
|
||||
"column-left-header-style": "none",
|
||||
"search-banner-height": "15vh",
|
||||
"search-banner-height-mobile": "10vh",
|
||||
"publish-button-vertical-offset": "10px",
|
||||
|
|
Loading…
Reference in New Issue