diff options
Diffstat (limited to '_static/basic.css')
| -rw-r--r-- | _static/basic.css | 38 | 
1 files changed, 30 insertions, 8 deletions
| diff --git a/_static/basic.css b/_static/basic.css index bf18350b..7d5974c3 100644 --- a/_static/basic.css +++ b/_static/basic.css @@ -222,7 +222,7 @@ table.modindextable td {  /* -- general body styles --------------------------------------------------- */  div.body { -    min-width: 450px; +    min-width: 360px;      max-width: 800px;  } @@ -236,7 +236,6 @@ div.body p, div.body dd, div.body li, div.body blockquote {  a.headerlink {      visibility: hidden;  } -  a.brackets:before,  span.brackets > a:before{      content: "["; @@ -247,6 +246,7 @@ span.brackets > a:after {      content: "]";  } +  h1:hover > a.headerlink,  h2:hover > a.headerlink,  h3:hover > a.headerlink, @@ -334,13 +334,11 @@ aside.sidebar {  p.sidebar-title {      font-weight: bold;  } -  div.admonition, div.topic, blockquote {      clear: left;  }  /* -- topics ---------------------------------------------------------------- */ -  div.topic {      border: 1px solid #ccc;      padding: 7px; @@ -428,10 +426,6 @@ table.docutils td, table.docutils th {      border-bottom: 1px solid #aaa;  } -table.footnote td, table.footnote th { -    border: 0 !important; -} -  th {      text-align: left;      padding-right: 5px; @@ -615,6 +609,7 @@ ul.simple p {      margin-bottom: 0;  } +/* Docutils 0.17 and older (footnotes & citations) */  dl.footnote > dt,  dl.citation > dt {      float: left; @@ -632,6 +627,33 @@ dl.citation > dd:after {      clear: both;  } +/* Docutils 0.18+ (footnotes & citations) */ +aside.footnote > span, +div.citation > span { +    float: left; +} +aside.footnote > span:last-of-type, +div.citation > span:last-of-type { +  padding-right: 0.5em; +} +aside.footnote > p { +  margin-left: 2em; +} +div.citation > p { +  margin-left: 4em; +} +aside.footnote > p:last-of-type, +div.citation > p:last-of-type { +    margin-bottom: 0em; +} +aside.footnote > p:last-of-type:after, +div.citation > p:last-of-type:after { +    content: ""; +    clear: both; +} + +/* Footnotes & citations ends */ +  dl.field-list {      display: grid;      grid-template-columns: fit-content(30%) auto; | 
