
4 changed files with 35 additions and 192 deletions
@ -1,95 +0,0 @@
@@ -1,95 +0,0 @@
|
||||
div.document { |
||||
margin: 0; |
||||
} |
||||
|
||||
div.body { |
||||
margin-top: 2em; |
||||
} |
||||
|
||||
div.sphinxsidebarwrapper { |
||||
background: #EEE; |
||||
} |
||||
|
||||
div.sphinxsidebarwrapper p.blurb { |
||||
text-align: center; |
||||
} |
||||
|
||||
div.sphinxsidebarwrapper span.logo { |
||||
display: block; |
||||
text-align: center; |
||||
font-family: Georgia, serif; |
||||
padding: 0; |
||||
font-size: 180%; |
||||
} |
||||
|
||||
div.sphinxsidebar a { |
||||
border-width: 0; |
||||
} |
||||
|
||||
div.sphinxsidebar li { |
||||
color: #444; |
||||
} |
||||
|
||||
div.section { |
||||
margin-top: 2.5em; |
||||
} |
||||
|
||||
a.reference { |
||||
border-bottom: none; |
||||
} |
||||
|
||||
code.xref { |
||||
font-weight: normal; |
||||
background-color: #F8F8F8; |
||||
padding: 0.1em 0 0.1em 0; |
||||
} |
||||
|
||||
div.section > dl.c > dt:first-child, |
||||
div.section > dl.cpp > dt:first-child { |
||||
background-color: #F8F8F8; |
||||
font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; |
||||
font-size: 0.9em; |
||||
font-weight: normal; |
||||
margin-bottom: 0.5em; |
||||
padding: 0.1em 0 0.1em 0; |
||||
} |
||||
|
||||
tt.descname, tt.descclassname, code.descname, code.descclassname { |
||||
font-size: 0.9em; |
||||
} |
||||
|
||||
dl.member { |
||||
margin-top: 0.5em; |
||||
} |
||||
|
||||
dl.enumerator { |
||||
margin-top: 0.5em; |
||||
} |
||||
|
||||
dl.field-list > dt { |
||||
padding-left: 0; |
||||
} |
||||
|
||||
pre, tt, code { |
||||
background-color: #F8F8F8; |
||||
} |
||||
|
||||
.toctree-l1 { |
||||
margin-top: 1.0em; |
||||
} |
||||
|
||||
img.logo { |
||||
width: 6em; |
||||
} |
||||
|
||||
.class { |
||||
padding-top: 1.5em; |
||||
} |
||||
|
||||
.exception { |
||||
padding-top: 1.5em; |
||||
} |
||||
|
||||
.class > dd > dl.function { |
||||
padding-top: 1.0em; |
||||
} |
@ -1,57 +0,0 @@
@@ -1,57 +0,0 @@
|
||||
{% if theme_logo %} |
||||
<p class="logo"> |
||||
<a href="{{ pathto(master_doc) }}"> |
||||
<img class="logo" src="{{ pathto('_static/' ~ theme_logo, 1) }}" alt="Logo"/> |
||||
{% if theme_logo_name|lower == 'true' %} |
||||
<span class="logo logo-name">{{ project }}</span> |
||||
{% endif %} |
||||
</a> |
||||
</p> |
||||
{% else %} |
||||
<h1 class="logo"><a href="{{ pathto(master_doc) }}">{{ project }}</a></h1> |
||||
{% endif %} |
||||
|
||||
{% if theme_description %} |
||||
<p class="blurb">{{ theme_description }}</p> |
||||
{% endif %} |
||||
|
||||
{% if theme_github_user and theme_github_repo %} |
||||
{% if theme_github_button|lower == 'true' %} |
||||
<p> |
||||
<iframe src="https://ghbtns.com/github-btn.html?user={{ theme_github_user }}&repo={{ theme_github_repo }}&type={{ theme_github_type }}&count={{ theme_github_count }}&size=large&v=2" |
||||
allowtransparency="true" frameborder="0" scrolling="0" width="200px" height="35px"></iframe> |
||||
</p> |
||||
{% endif %} |
||||
{% endif %} |
||||
|
||||
{% if theme_travis_button|lower != 'false' %} |
||||
{% if theme_travis_button|lower == 'true' %} |
||||
{% set path = theme_github_user + '/' + theme_github_repo %} |
||||
{% else %} |
||||
{% set path = theme_travis_button %} |
||||
{% endif %} |
||||
<p> |
||||
<a class="badge" href="https://travis-ci.org/{{ path }}"> |
||||
<img |
||||
alt="https://secure.travis-ci.org/{{ path }}.svg?branch={{ theme_badge_branch }}" |
||||
src="https://secure.travis-ci.org/{{ path }}.svg?branch={{ theme_badge_branch }}" |
||||
/> |
||||
</a> |
||||
</p> |
||||
{% endif %} |
||||
|
||||
{% if theme_codecov_button|lower != 'false' %} |
||||
{% if theme_codecov_button|lower == 'true' %} |
||||
{% set path = theme_github_user + '/' + theme_github_repo %} |
||||
{% else %} |
||||
{% set path = theme_codecov_button %} |
||||
{% endif %} |
||||
<p> |
||||
<a class="badge" href="https://codecov.io/github/{{ path }}"> |
||||
<img |
||||
alt="https://codecov.io/github/{{ path }}/coverage.svg?branch={{ theme_badge_branch }}" |
||||
src="https://codecov.io/github/{{ path }}/coverage.svg?branch={{ theme_badge_branch }}" |
||||
/> |
||||
</a> |
||||
</p> |
||||
{% endif %} |
Loading…
Reference in new issue