forked from indymedia/epicyon
Different separator widths for different columns
parent
cc179a5fdb
commit
8e45330409
|
@ -132,6 +132,8 @@
|
||||||
--post-separator-margin-top: 0;
|
--post-separator-margin-top: 0;
|
||||||
--post-separator-margin-bottom: 0;
|
--post-separator-margin-bottom: 0;
|
||||||
--post-separator-width: 95%;
|
--post-separator-width: 95%;
|
||||||
|
--separator-width-left: 95%;
|
||||||
|
--separator-width-right: 95%;
|
||||||
--post-separator-height: 1px;
|
--post-separator-height: 1px;
|
||||||
--header-vertical-offset: 0;
|
--header-vertical-offset: 0;
|
||||||
--profile-background-height: 25vw;
|
--profile-background-height: 25vw;
|
||||||
|
@ -189,7 +191,7 @@ body, html {
|
||||||
background-color: var(--column-left-color);
|
background-color: var(--column-left-color);
|
||||||
padding-top: var(--post-separator-margin-top);
|
padding-top: var(--post-separator-margin-top);
|
||||||
padding-bottom: var(--post-separator-margin-bottom);
|
padding-bottom: var(--post-separator-margin-bottom);
|
||||||
width: var(--post-separator-width);
|
width: var(--separator-width-left);
|
||||||
height: var(--post-separator-height);
|
height: var(--post-separator-height);
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
@ -198,7 +200,7 @@ body, html {
|
||||||
background-color: var(--column-left-color);
|
background-color: var(--column-left-color);
|
||||||
padding-top: var(--post-separator-margin-top);
|
padding-top: var(--post-separator-margin-top);
|
||||||
padding-bottom: var(--post-separator-margin-bottom);
|
padding-bottom: var(--post-separator-margin-bottom);
|
||||||
width: var(--post-separator-width);
|
width: var(--separator-width-right);
|
||||||
height: var(--post-separator-height);
|
height: var(--post-separator-height);
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,7 +35,9 @@
|
||||||
"font-size-dropdown-header": "30px",
|
"font-size-dropdown-header": "30px",
|
||||||
"post-separator-margin-top": "1%",
|
"post-separator-margin-top": "1%",
|
||||||
"post-separator-margin-bottom": "1%",
|
"post-separator-margin-bottom": "1%",
|
||||||
"post-separator-width": "95%",
|
"post-separator-width": "96%",
|
||||||
|
"separator-width-left": "98%",
|
||||||
|
"separator-width-right": "98%",
|
||||||
"post-separator-height": "1px",
|
"post-separator-height": "1px",
|
||||||
"column-left-border-width": "0px",
|
"column-left-border-width": "0px",
|
||||||
"column-right-border-width": "0px",
|
"column-right-border-width": "0px",
|
||||||
|
|
Loading…
Reference in New Issue