Skip to content

Commit

Permalink
Merge pull request #390 from EDI-N/Kolya
Browse files Browse the repository at this point in the history
button+feature
  • Loading branch information
EDI-N committed Jan 29, 2020
2 parents 9eefa47 + c68e6ed commit 3a81ea4
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/_static/theme_overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,18 @@
font-size: small;
}

/* Подчеркивание текста underline text
В общем сначала на странице прописываем руками ролm а потом уже вызываем внутри текста, например :underline:`This text is underlined`*/

.underline {
text-decoration: underline;
}

/* Это для кнопки "Scroll To top" */
#topchik {
position: fixed;
bottom: 20px;
right: 20px;
right: 45px;
background: rgb(0, 0, 0);
background: rgba(0, 0, 0, 0.7);
width: 50px;
Expand Down
12 changes: 12 additions & 0 deletions docs/_static/ultra_custom.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Jivosite Chat
(function () {
d = document;
s = d.createElement("script");
s.src = "//code.jivosite.com/widget.js";
s.async = 1;
s.setAttribute("jv-id", "henwYHPqdJ");
d.getElementsByTagName("head")[0].appendChild(s);
})
();


1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@

def setup(app):
app.add_stylesheet('theme_overrides.css')
app.add_javascript('ultra_custom.js')
app.add_javascript('galaga.js')

# А это то, что я нагородил (не используй это):
Expand Down

0 comments on commit 3a81ea4

Please sign in to comment.