Skip to content

Latest commit

 

History

History
58 lines (43 loc) · 1.83 KB

themes.md

File metadata and controls

58 lines (43 loc) · 1.83 KB

Темы оформления

В настоящее время доступны три темы. Пользовательскую темы можно найти на сайтах Vue, buble и @liril-net темного стиля.

<link rel="stylesheet" href="//unpkg.com/docsify/themes/vue.css">
<link rel="stylesheet" href="//unpkg.com/docsify/themes/buble.css">
<link rel="stylesheet" href="//unpkg.com/docsify/themes/dark.css">
<link rel="stylesheet" href="//unpkg.com/docsify/themes/pure.css">

!> Сжатые файлы доступны в /lib/themes/.

<!-- compressed -->

<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/buble.css">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/dark.css">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/pure.css">

Если у вас есть идеи или вы хотите создать новую тему, вы можете создать pull request.

Кликнуть для просмотра

vue.css buble.css dark.css pure.css
<style> .demo-theme-preview a { padding-right: 10px; } .demo-theme-preview a:hover { cursor: pointer; text-decoration: underline; } </style> <script> var preview = Docsify.dom.find('.demo-theme-preview'); var themes = Docsify.dom.findAll('[rel="stylesheet"]'); preview.onclick = function (e) { var title = e.target.getAttribute('data-theme') themes.forEach(function (theme) { theme.disabled = theme.title !== title }); }; </script>