Add text variant

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-09-11 23:04:32 +03:00
parent 64db65c72e
commit 7f53d88f50
47 changed files with 6851 additions and 86 deletions

View File

@@ -0,0 +1,33 @@
.commento-main-area :not(a) {
color: var(--primary-foreground-color);
}
.commento-root .commento-highlighted-card,
.commento-main-area textarea,
.commento-main-area input {
background: var(--secondary-subtle-color);
}
.commento-main-area input[type="text"]::placeholder,
.commento-main-area textarea::placeholder {
color: #868e96;
}
.commento-root .commento-submit-button {
background: var(--ghost-accent-color);
color: var(--color-white);
}
.commento-root .commento-name,
.commento-mod-tools::before,
.commento-sort-policy-button-selected {
color: var(--ghost-accent-color);
}
.commento-root .commento-card {
border-top: none;
}
.commento-markdown-help {
border: none;
}

9
assets/css/lib/prism.css Normal file
View File

@@ -0,0 +1,9 @@
.gh-content code {
display: inline-block;
color: var(--primary-foreground-color) !important;
}
pre[class*="language-"] {
background: var(--secondary-subtle-color) !important;
color: var(--primary-foreground-color) !important;
}

19
assets/css/lib/tocbot.css Normal file
View File

@@ -0,0 +1,19 @@
.toc ol {
counter-reset: item;
list-style: decimal;
line-height: 1.25;
}
.toc li:before {
content: counters(item, ".") " ";
counter-increment: item;
}
a.toc-link {
text-decoration: none;
font-weight: normal;
}
.toc>.toc-list li {
list-style: none
}