attic.css_t 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. @import url("basic.css");
  2. body {
  3. font-family: Helvetica;
  4. background-color: white;
  5. margin: 0;
  6. padding: 0;
  7. position: relative;
  8. }
  9. div.related {
  10. display: none;
  11. background-color: black;
  12. padding: .4em;
  13. width: 800px;
  14. margin: 0 auto;
  15. }
  16. div.related a {
  17. color: white;
  18. text-decoration: none;
  19. }
  20. div.document {
  21. width: 1030px;
  22. margin: 0 auto;
  23. }
  24. div.documentwrapper {
  25. float: right;
  26. width: 760px;
  27. padding: 0 20px 20px 20px;
  28. background-color: #f3f3f3;
  29. margin-bottom: 2em;
  30. }
  31. div.sphinxsidebar {
  32. margin-left: 0;
  33. parring-right: 20px;
  34. width: 230px;
  35. background: #e9e9e9;
  36. position: absolute;
  37. top: 0;
  38. min-height: 100%;
  39. }
  40. h1, h2, h3 {
  41. font-family: "Oswald";
  42. font-weight: normal;
  43. color: #333;
  44. }
  45. h1 {
  46. margin: .8em 0 .5em;
  47. }
  48. h2, h3 {
  49. margin: 1.2em 0 .6em;
  50. }
  51. h1 { font-size: 200%;}
  52. h2 { font-size: 140%;}
  53. h3 { font-size: 110%;}
  54. ul {
  55. padding-left: 1.2em;
  56. margin-bottom: .3em;
  57. }
  58. ul ul {
  59. font-size: 95%;
  60. }
  61. li {
  62. margin: .1em 0;
  63. }
  64. a:link, a:visited {
  65. color: #00608f;
  66. text-decoration: none;
  67. }
  68. a:hover {
  69. color: #00B0E4;
  70. border-bottom: 1px dotted #00B0E4;
  71. }
  72. div.sphinxsidebar a:link, div.sphinxsidebar a:visited {
  73. color: #555;
  74. border-bottom: 1px dotted #555;
  75. }
  76. div.sphinxsidebar input {
  77. border: 1px solid #ccc;
  78. }
  79. pre {
  80. padding: 10px 20px;
  81. background: white;
  82. color: #222;
  83. line-height: 1.5em;
  84. border-bottom: 2px solid black;
  85. font-family: "Inconsolata";
  86. }
  87. pre a:link,
  88. pre a:visited {
  89. color: #00B0E4;
  90. }
  91. div.sidebarlogo .title {
  92. font-family: "Oswald";
  93. font-size: 500%;
  94. }
  95. div.sidebarlogo .subtitle {
  96. font-style: italic;
  97. color: #777;
  98. }
  99. tt span.pre {
  100. font-size: 110%;
  101. }
  102. dt {
  103. font-family: "Oswald";
  104. font-size: 95%;
  105. }
  106. div.admonition p.admonition-title + p {
  107. display: inline;
  108. }
  109. div.admonition p {
  110. margin-bottom: 5px;
  111. }
  112. p.admonition-title {
  113. display: inline;
  114. }
  115. p.admonition-title:after {
  116. content: ":";
  117. }
  118. div.note {
  119. background-color: #ff5;
  120. border-bottom: 2px solid #d22;
  121. }
  122. div.seealso {
  123. background-color: #ffe;
  124. border: 1px solid #ff6;
  125. border-radius: .4em;
  126. box-shadow: 2px 2px #dd6;
  127. }