mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
278540ec60
Added analytics via matomo (analytics hosted on my personal site), also added privacy policy page with link in footer Updated code colors to match light theme Added display for Crow's financial supporters on OpenCollective Fixed Sidebar issue on narrow screens Fixed Get crow Icons being misaligned
47 lines
1.0 KiB
CSS
47 lines
1.0 KiB
CSS
|
|
:root {
|
|
--md-primary-fg-color: #24404f;
|
|
--md-accent-fg-color: #122027;
|
|
--md-typeset-a-color: var(--md-accent-fg-color) !important;
|
|
--md-default-bg-color: #e5f2f8;
|
|
--md-code-bg-color: #cfcfcf !important;
|
|
--md-code-hl-comment-color: var(--md-code-fg-color) !important;
|
|
--md-code-hl-generic-color: var(--md-code-fg-color) !important;
|
|
--md-code-hl-variable-color: var(--md-code-fg-color) !important;
|
|
--md-code-fg-color: #fff !important;
|
|
--md-code-hl-punctuation-color: #fff !important;
|
|
}
|
|
|
|
.md-typeset code {
|
|
background-color: #cfcfcf;
|
|
color: #1d1d1d;
|
|
padding: 0.2rem;
|
|
}
|
|
|
|
.highlight .c, .highlight .c1, .highlight .ch, .highlight .cm, .highlight .cs, .highlight .sd {
|
|
color: #606060 !important;
|
|
}
|
|
|
|
.linenos {
|
|
background-color: #cfcfcf !important;
|
|
color: #1d1d1d !important;
|
|
}
|
|
|
|
.highlighttable .linenodiv pre {
|
|
background-color: #cfcfcf !important;
|
|
color: #1d1d1d !important;
|
|
}
|
|
|
|
.highlight .p {
|
|
color: #1d1d1d;
|
|
}
|
|
|
|
.highlight .o {
|
|
color: #1d1d1d;
|
|
}
|
|
|
|
.highlight .n {
|
|
color: #1d1d1d;
|
|
}
|
|
|