Deployed 207d43b with MkDocs version: 1.6.1

This commit is contained in:
github-actions[bot]
2026-01-29 06:46:57 +00:00
commit 5ca2f54a26
88 changed files with 14683 additions and 0 deletions

24
styles/styles.css Normal file
View File

@@ -0,0 +1,24 @@
/* Light mode image - visible by default */
.light-mode-image {
display: block;
}
/* Dark mode image - hidden by default */
.dark-mode-image {
display: none;
}
/* When dark theme (slate) is active */
[data-md-color-scheme="slate"] .light-mode-image {
display: none;
}
[data-md-color-scheme="slate"] .dark-mode-image {
display: block;
}
/* Optional: smooth transition */
.light-mode-image,
.dark-mode-image {
transition: opacity 0.2s ease-in-out;
}