From 89c2b62dc19f94f6b081125c4b7f887e013a1c0f Mon Sep 17 00:00:00 2001 From: ilyamak04 Date: Sun, 9 Feb 2025 11:32:56 +0300 Subject: [PATCH] + --- docs/stylesheets/extra.css | 17 +++++++++++++++++ docs/stylesheets/extra.js | 14 ++++++++++++++ mkdocs.yml | 10 +++++++++- 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 docs/stylesheets/extra.js diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index ac42239..26c163b 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -37,3 +37,20 @@ pre code { border: 1px solid #333; /* Тонкий контур */ overflow-x: auto; /* Добавляем горизонтальный скроллинг */ } + +#back-to-top { + position: fixed; + bottom: 30px; + right: 30px; + display: none; + background-color: #007bff; + color: white; + padding: 10px 15px; + border-radius: 5px; + cursor: pointer; + z-index: 1000; +} + +#back-to-top:hover { + background-color: #0056b3; +} diff --git a/docs/stylesheets/extra.js b/docs/stylesheets/extra.js new file mode 100644 index 0000000..0172bfc --- /dev/null +++ b/docs/stylesheets/extra.js @@ -0,0 +1,14 @@ +document.addEventListener('DOMContentLoaded', function() { + const btn = document.createElement('div'); + btn.id = 'back-to-top'; + btn.innerText = '↑ Наверх'; + document.body.appendChild(btn); + + window.addEventListener('scroll', () => { + btn.style.display = window.scrollY > 200 ? 'block' : 'none'; + }); + + btn.addEventListener('click', () => { + window.scrollTo({ top: 0, behavior: 'smooth' }); + }); +}); diff --git a/mkdocs.yml b/mkdocs.yml index 8f872e1..e6f31ad 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -67,5 +67,13 @@ markdown_extensions: extra_css: - stylesheets/extra.css +extra_javascript: + - stylesheets/extra.js + plugins: - - glightbox \ No newline at end of file + - glightbox + +nav: +- Linux: + - Команды: Команды.md + - Заметки: Заметки.md