style.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. :Author: CYBERDEViL
  3. :Contact: cyberdevilnl at protonmail d0t com
  4. :Copyright: This stylesheet has been placed in the public domain.
  5. Stylesheet for use with Docutils.
  6. https://docutils.sourceforge.io/docs/howto/html-stylesheets.html
  7. */
  8. /*@import url(html4css1.css);*/
  9. body {
  10. max-width: 800px;
  11. background-color: #161616;
  12. color: #bcb;
  13. }
  14. a {
  15. color: #11aa11;
  16. }
  17. table {
  18. border: none;
  19. background-color: #191919;
  20. }
  21. tr {
  22. border: none;
  23. }
  24. th {
  25. border: none;
  26. text-align: left;
  27. }
  28. td {
  29. border: none;
  30. border-bottom: 1px solid #114411;
  31. text-align: left;
  32. }
  33. /*indent sections a little*/
  34. .section {
  35. margin-left: 12px;
  36. }
  37. /*indent section contents a little*/
  38. p, pre, table {
  39. margin-left: 12px;
  40. }
  41. pre {
  42. font-family: monospace;
  43. background-color: #222;
  44. border: 1px solid #111;
  45. padding: 5px;
  46. }
  47. h1 {
  48. background-color: #222;
  49. padding: 6px;
  50. }
  51. h1 a {
  52. color: #fff;
  53. text-decoration: none;
  54. }
  55. h1 a:hover {
  56. text-decoration: underline;
  57. }
  58. img.header {
  59. max-width: 800px;
  60. height: auto;
  61. width: 100%;
  62. }
  63. img.align-right {
  64. clear: right;
  65. float: right;
  66. margin-left: 1em
  67. }