Skip to content

Commit

Permalink
Merge pull request #5 from remotv/master
Browse files Browse the repository at this point in the history
i should have pushed this into latest
  • Loading branch information
bwookieeeee committed Sep 26, 2020
2 parents e506754 + 1229c9b commit d59548b
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
_build
.vscode
Empty file removed _static/default.css
Empty file.
Binary file added _static/logo.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions _static/stylesheet.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
@import 'theme.css';

body {
color: #FFF;
}

.wy-nav-content-wrap {
background: #282c34;
}

.wy-nav-content {
background: #191924;
}

a {
color: #6aabff;
}

a:visited {
color: #6aabff;
}

a:hover {
color: #b073d3;
}

.rst-content code {
background: rgba(255,255,255,0.25);;
border: none;

}

.rst-content code.literal, .rst-content tt.literal {
color: #FFF;
}
13 changes: 12 additions & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ['build', 'Thumbs.db', '.DS_Store']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']


# -- Options for HTML output -------------------------------------------------
Expand All @@ -53,4 +53,15 @@

html_static_path = ['_static']

html_css_files = ['stylesheet.css']

html_logo = '_static/logo.png'

html_theme_options = {
"collapse_navigation": False,
"prev_next_buttons_location": "both",
"style_nav_header_background": "-webkit-linear-gradient(-45deg,#19191d,#162755",
"logo_only": True
}

master_doc = 'index'

0 comments on commit d59548b

Please sign in to comment.