Skip to content

Commit

Permalink
Update compiled CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
femto-code committed Mar 9, 2024
1 parent 5d5d929 commit e34693d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 6 deletions.
6 changes: 3 additions & 3 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
*******************************/
:root {
--ls-font-family: "Inter";
--ls-main-content-max-width: 1000px;
--ls-main-content-max-width-wide: 1280px;
--ls-main-content-max-width: 1000px; /* default: 810px */
--ls-main-content-max-width-wide: 1280px; /* default: 1280px */
--ls-page-text-size: 1em;
--ls-page-title-size: 26px;
--ls-tag-text-opacity: 0.8;
Expand Down Expand Up @@ -282,7 +282,7 @@ html[data-theme=light] {
background-color: var(--ct-color-level-1) !important;
}

@media screen and (max-width: 992px) {
@media screen and (max-width: 600px) {
#main-content-container .cp__sidebar-main-content > .mx-auto {
padding: 10px 5px 10px 10px;
}
Expand Down
14 changes: 11 additions & 3 deletions main2.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
*******************************/
:root {
--ls-font-family: "Inter";
--ls-main-content-max-width: 1000px;
--ls-main-content-max-width-wide: 1280px;
--ls-main-content-max-width: 900px; /* default: 810px */
--ls-main-content-max-width-wide: 1280px; /* default: 1280px */
--ls-page-text-size: 1em;
--ls-page-title-size: 26px;
--ls-tag-text-opacity: 0.8;
Expand Down Expand Up @@ -271,7 +271,7 @@ html[data-theme=light] {
background-color: var(--ct-color-level-1) !important;
}

@media screen and (max-width: 992px) {
@media screen and (max-width: 600px) {
#main-content-container .cp__sidebar-main-content > .mx-auto {
padding: 10px 5px 10px 10px;
}
Expand Down Expand Up @@ -1531,3 +1531,11 @@ a.tooltip-priority {
.page-property-key[data-ref|=plugin]::before {
content: "\ebd9";
}

/* quick fix: hr border-color controlled by
* --lx-gray-05: var(--cp-darker); // --ls-menu-hover-color
* this would mean same as bg color :(
*/
.content hr {
border-color: #32363e;
}

0 comments on commit e34693d

Please sign in to comment.