From 6702e7412828729c7a5df776d014f25deabf2274 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Wed, 27 Aug 2014 23:12:09 -0400 Subject: docs: initial rambutan theme Still needs bundled fonts and polish. --- docs/source/_static/img/round_logo_32x32.ico | Bin 4286 -> 0 bytes docs/source/_static/img/round_logo_60x60.png | Bin 5552 -> 0 bytes docs/source/_static/leaflabs-docs.css | 1 - docs/source/_static/rambutan-docs.css | 132 +++++++++++++++++++++++++++ 4 files changed, 132 insertions(+), 1 deletion(-) delete mode 100644 docs/source/_static/img/round_logo_32x32.ico delete mode 100644 docs/source/_static/img/round_logo_60x60.png delete mode 100644 docs/source/_static/leaflabs-docs.css create mode 100644 docs/source/_static/rambutan-docs.css (limited to 'docs/source/_static') diff --git a/docs/source/_static/img/round_logo_32x32.ico b/docs/source/_static/img/round_logo_32x32.ico deleted file mode 100644 index 29fb2bf..0000000 Binary files a/docs/source/_static/img/round_logo_32x32.ico and /dev/null differ diff --git a/docs/source/_static/img/round_logo_60x60.png b/docs/source/_static/img/round_logo_60x60.png deleted file mode 100644 index dacd36a..0000000 Binary files a/docs/source/_static/img/round_logo_60x60.png and /dev/null differ diff --git a/docs/source/_static/leaflabs-docs.css b/docs/source/_static/leaflabs-docs.css deleted file mode 100644 index 18f5bcc..0000000 --- a/docs/source/_static/leaflabs-docs.css +++ /dev/null @@ -1 +0,0 @@ -/* Any custom CSS you want applied goes here */ diff --git a/docs/source/_static/rambutan-docs.css b/docs/source/_static/rambutan-docs.css new file mode 100644 index 0000000..94ec845 --- /dev/null +++ b/docs/source/_static/rambutan-docs.css @@ -0,0 +1,132 @@ +/* Rambutan Documentation Stylesheet */ +/* Intended to be applied over the "better" theme's defaults */ + +/* TODO: http://practicaltypography.com/rules-and-borders.html */ + +body { + font-family: serif; + font-size: 16px; +} + +.body { + font-size: 140%; + line-height: 125%; + color: rgb(72, 72, 72); +} + +.sphinxsidebar { + padding-top: 6em; + opacity: 0.65; + font-size: 0.9rem; +} + +.sphinxsidebar:hover { + opacity: 0.9; +} + +.sphinxsidebar .search input { + padding-left: 0.25rem; + margin-bottom: 2em; +} + +h1, h2, h3, h4, h5, h6 { + color: #000; + font-family: "Helvetica", sans-serif; +} + +h1 { font-size: 1.6em; font-weight: bold; } +h2 { font-size: 1.3em; font-weight: normal; } +h3 { font-size: 1.1em; font-weight: normal; } +h4 { font-size: 1.0em; font-weight: normal; } +h5 { font-size: 1.0em; font-weight: normal; } + +header h1 { + margin-top: 0.3em; + font-size: 1.2em; + opacity: 0.65; +} + +header h1:hover { + opacity: 0.9; +} + +.rubric { + text-align: center; + text-transform: uppercase; +} + +a.toc-backref { + color: #000; +} + +a.internal em { + font-style: normal; +} + +footer#pagefooter, footer#pagefooter a { + color: #777; +} + +.contents .topic-title { + font-weight: normal; +} + +body > header h1 a, body > header h1 a:visited { + color: #000; + margin-left: 240px; + font-family: "Helvetica", sans-serif; + font-weight: bold; + text-transform: uppercase; + font-variant: small-caps; + font-weight: normal; +} + +.sphinxsidebar h3 a { + color: #444; +} + +pre, tt { + font-family: "Source Code Pro", "Monaco", "Consolas", "Lucida Console", monospace; +} + +tt { + font-size: 80%; + background: #f4f4f4; +} + +.note tt { + background: #ececec; +} + +a tt { + font-weight: normal; +} + +.highlight pre { + background-color: #FFF; + background-color: #333; + padding: 0.75em; + margin-bottom: 2em; + margin-left: 0px; + margin-right: 0px; + border-radius: 2px; + font-size: 0.9rem; + line-height: 120%; +} + +div.admondition, div.topic, div.warning, div.note { + border-left: none; + border-right: none; +} + +div.note, div.topic { + background-color: #f4f4f4; +} + +.related .bottom { + margin-top: 2em; +} + +a:hover { + text-decoration: none; +} -- cgit v1.2.3