cmake.css 861 B

123456789101112131415161718192021222324252627282930313233343536
  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. }
  17. /* Remove unwanted margin in case list item contains a div-wrapping
  18. directive like `.. versionadded` or `.. deprecated`. */
  19. dd > :first-child > p {
  20. margin-top: 0px;
  21. }
  22. div.outdated {
  23. background-color: #f0f0c0;
  24. color: black;
  25. font-size: 90%;
  26. padding-bottom: 5px;
  27. padding-left: 2px;
  28. padding-right: 2px;
  29. padding-top: 5px;
  30. text-align: center;
  31. width: 100%;
  32. }