2022-11-21 20:17:46 +00:00
|
|
|
|
|
|
|
/* Color Settings */
|
2022-11-04 11:12:12 +00:00
|
|
|
/* https://github.com/squidfunk/mkdocs-material/blob/6b5035f5580f97532d664e3d1babf5f320e88ee9/src/assets/stylesheets/main/_colors.scss */
|
|
|
|
/* https://squidfunk.github.io/mkdocs-material/setup/changing-the-colors/#custom-colors */
|
|
|
|
:root > * {
|
|
|
|
--md-primary-fg-color: #FFFFFF;
|
|
|
|
--md-primary-bg-color: #1D1D20;
|
|
|
|
|
|
|
|
--md-accent-fg-color: #999;
|
|
|
|
|
|
|
|
--md-typeset-color: #1D1D20;
|
2022-11-23 17:12:14 +00:00
|
|
|
--md-typeset-a-color: #2AA996;
|
2022-11-04 11:12:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
[data-md-color-scheme="slate"] {
|
|
|
|
--md-primary-fg-color: #2E303E;
|
|
|
|
--md-primary-bg-color: #FEFEFE;
|
|
|
|
|
|
|
|
--md-accent-fg-color: #999;
|
|
|
|
|
|
|
|
--md-typeset-color: #FEFEFE;
|
2022-11-23 17:12:14 +00:00
|
|
|
--md-typeset-a-color: #21C8B8;
|
2022-11-14 20:55:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Center Markdown Tables (requires md_in_html extension) */
|
|
|
|
.center-table {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.md-typeset .center-table :is(td,th):not([align]) {
|
|
|
|
/* Reset alignment for table cells */
|
|
|
|
text-align: initial;
|
|
|
|
}
|
2022-11-21 20:17:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Markdown Header */
|
2022-11-24 11:32:32 +00:00
|
|
|
/* https://github.com/squidfunk/mkdocs-material/blob/dcab57dd1cced4b77875c1aa1b53467c62709d31/src/assets/stylesheets/main/_typeset.scss */
|
2022-11-21 20:17:46 +00:00
|
|
|
.md-typeset h1 {
|
|
|
|
font-weight: 400;
|
|
|
|
color: var(--md-default-fg-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.md-typeset h2 {
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
2022-11-24 11:32:32 +00:00
|
|
|
|
|
|
|
.md-typeset h3 {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.md-typeset a {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Image align center */
|
|
|
|
.center {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|