Skip to content

Commit

Permalink
Update: add semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
SlyBouhafs committed Nov 11, 2020
1 parent e3d4857 commit 1768e16
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion resources/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
--ls-primary-background-color: #002b36;
--ls-secondary-background-color: #073642;
--ls-tertiary-background-color: #0f4552;
--ls-quaternary-background-color: #01313d
--ls-quaternary-background-color: #01313d;

--ls-block-properties-background-color: #02222a;
--ls-search-background-color: var(--ls-primary-background-color);
Expand Down
8 changes: 4 additions & 4 deletions resources/css/table.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ td {
text-align: left;
}

tr:nth-child(even) {background: var(--ls-quaternary-background-color)}
tr:nth-child(odd) {background: var(--ls-primary-background-color)}
tr:nth-child(even) {background: var(--ls-quaternary-background-color);}
tr:nth-child(odd) {background: var(--ls-primary-background-color);}

caption.t-above {caption-side:top}
caption.t-bottom {caption-side:bottom}
Expand All @@ -42,8 +42,8 @@ figcaption{margin-top:.3em}
color: var(--ls-primary-text-color);
}

.dark-theme tr:nth-child(even) {background: var(--ls-quaternary-background-color)}
.dark-theme tr:nth-child(odd) {background: var(--ls-primary-background-color)}
.dark-theme tr:nth-child(even) {background: var(--ls-quaternary-background-color);}
.dark-theme tr:nth-child(odd) {background: var(--ls-primary-background-color);}
.dark-theme td, .dark-theme tr {
border-bottom: none;
}
Expand Down

0 comments on commit 1768e16

Please sign in to comment.