From 13f9cc6a019d7daf9569c175cf8bd8bb410904f1 Mon Sep 17 00:00:00 2001 From: Lint <44368997+C0derLint@users.noreply.github.com> Date: Sun, 3 Mar 2019 14:00:47 +0530 Subject: [PATCH 1/2] Removed dead css --- docs/css/extra.css | 42 +++++++----------------------------------- 1 file changed, 7 insertions(+), 35 deletions(-) diff --git a/docs/css/extra.css b/docs/css/extra.css index 2f58f22..1230d79 100644 --- a/docs/css/extra.css +++ b/docs/css/extra.css @@ -1,37 +1,9 @@ -.bs-sidebar.well { - /* margin-bottom: 0; */ -} - -.bs-sidebar .nav > li > a:hover, -.bs-sidebar .nav > li > a:focus { - border: none; - border-left: 2px solid; -} - -.bs-sidebar .nav > .active > a, -.bs-sidebar .nav > .active:hover > a, -.bs-sidebar .nav > .active:focus > a { - border: none; - border-left: 2px solid; -} - -@media (min-width: 992px) { - .bs-sidebar.affix { - /* top: 60px; */ - /* bottom: 0px; */ - top: 80px; - bottom: 23px; - overflow: auto; - } -} - -@media (min-width: 1200px) { - .bs-sidebar.affix-bottom, - .bs-sidebar.affix { - width: 280px; - } - - .container > .col-md-9 { - padding-left: 40px; +@media (min-width: 960px) { + html { + scroll-behavior: smooth; + } + + .md-content__inner > ul:nth-child(5) { + display: none; } } From 4e2a94d2e401cac34f4343614e88ded7fc404948 Mon Sep 17 00:00:00 2001 From: Lint <44368997+C0derLint@users.noreply.github.com> Date: Sun, 3 Mar 2019 14:04:32 +0530 Subject: [PATCH 2/2] Remove redundant travis config --- .travis.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 51e1ab6..f2cfce4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,16 +3,13 @@ language: python python: - "3.6" -install: - - pip install -r requirements.txt - script: - cp README.md docs/index.md - mkdocs build deploy: provider: pages - local-dir: "site" + local-dir: site skip-cleanup: true keep-history: true github-token: $GITHUB_TOKEN