1
0

cmake.css 484 B

123456789101112131415161718
  1. /* Import the Sphinx theme style. */
  2. @import url("default.css");
  3. /* Wrap sidebar content even within words so that long
  4. document names do not escape sidebar borders. */
  5. div.sphinxsidebarwrapper {
  6. word-wrap: break-word;
  7. }
  8. /* Make links inside parsed-literal blocks more obvious
  9. by using a background color and increased line spacing
  10. to make them look boxed. */
  11. .literal-block {
  12. line-height: 1.4;
  13. }
  14. .literal-block a.reference.internal {
  15. background-color: #dfdfdf;
  16. }