57 lines
849 B
Text
57 lines
849 B
Text
/*
|
|
* bootstrap-sphinx.css
|
|
* ~~~~~~~~~~~~~~~~~~~~
|
|
*
|
|
* Sphinx stylesheet -- Twitter Bootstrap theme.
|
|
*/
|
|
|
|
.navbar-inverse .brand {
|
|
color: #FFF;
|
|
}
|
|
|
|
.page-top {
|
|
top: 0px;
|
|
}
|
|
|
|
{% if theme_navbar_fixed_top == 'true' %}
|
|
body {
|
|
{% if theme_bootswatch_theme %}
|
|
padding-top: 50px;
|
|
{% else %}
|
|
padding-top: 40px;
|
|
{% endif %}
|
|
}
|
|
.page-top {
|
|
{% if theme_bootswatch_theme %}
|
|
top: 50px;
|
|
{% else %}
|
|
top: 40px;
|
|
{% endif %}
|
|
}
|
|
|
|
.navbar-inner {
|
|
padding-left: 12px !important;
|
|
padding-right: 12px !important;
|
|
}
|
|
{% endif %}
|
|
|
|
{%- block sidebarlogo %}
|
|
{%- if logo %}
|
|
@media (min-width: 980px) {
|
|
.navbar h3 a, .navbar .brand {
|
|
background: transparent url("{{ logo }}") no-repeat 22px 3px;
|
|
padding-left: 62px;
|
|
}
|
|
}
|
|
{%- endif %}
|
|
{%- endblock %}
|
|
|
|
table {
|
|
border: 0;
|
|
}
|
|
|
|
.footer {
|
|
width: 100%;
|
|
border-top: 1px solid #ccc;
|
|
padding-top: 10px;
|
|
}
|