1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
@import url("menu.css");
@import url("rst.css");
html {
height: 100%;
}
.navbar {
flex: none;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
font-weight: 600 !important;
}
footer {
flex: 1;
}
footer a:any-link {
color: inherit;
text-decoration: none;
}
{%- if docutils_version_info[:2] < (0, 18) %}
a.brackets::before,
span.brackets::before {
content: "[";
}
a.brackets::after,
span.brackets::after {
content: "]";
}
span.brackets {
font-weight: normal;
}
dl.footnote,
dl.citation {
margin-bottom: 0;
}
dl.footnote > dt,
dl.citation > dt {
float: left;
}
dl.footnote > dd,
dl.citation > dd {
margin-bottom: 0;
}
dl.footnote > dd:after,
dl.citation > dd:after {
content: "";
clear: both;
}
dl.footnote > dd > p {
margin-left: 2rem;
}
dl.citation > dd > p {
margin-left: 4rem;
}
dl.footnote > dd > p:last-of-type,
dl.citation > dd > p:last-of-type {
margin-bottom: 0;
}
{%- else %}
aside.footnote > span,
div.citation > span {
float: left;
}
aside.footnote > span:last-of-type,
div.citation > span:last-of-type {
padding-right: 0.5rem;
}
aside.footnote > p {
margin-left: 2rem;
}
div.citation > p {
margin-left: 4rem;
}
aside.footnote > p:last-of-type,
div.citation > p:last-of-type {
margin-bottom: 0;
}
aside.footnote > p:last-of-type:after,
div.citation > p:last-of-type:after {
content: "";
clear: both;
}
{%- endif %}
|