a technical notebook
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

153 lines
2.2 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. body {
  2. background: white;
  3. color: #000000;
  4. font-family: sans-serif;
  5. margin-left: auto;
  6. margin-right: auto;
  7. margin-top: 0em;
  8. max-width: 48em;
  9. padding-left: 1em;
  10. padding-right: 1em;
  11. }
  12. .contents ul li {
  13. list-style: none;
  14. font-size: smaller;
  15. }
  16. .contents ul {
  17. margin: 0;
  18. padding: 0;
  19. }
  20. .contents a {
  21. text-decoration: none;
  22. }
  23. .contents a:hover {
  24. text-decoration: underline;
  25. }
  26. ul li {
  27. list-style: square;
  28. }
  29. .details .clicker-button {
  30. margin-left: 15px;
  31. vertical-align: middle;
  32. }
  33. button.clicker-button {
  34. background-color: white;
  35. border: 1.5px solid #ddc;
  36. border-radius: 3px;
  37. }
  38. button.clicker-button:active {
  39. background-color: #ddc;
  40. border-left: 1px solid black;
  41. border-top: 1px solid black;
  42. }
  43. .details .full {
  44. background-color: white;
  45. border-bottom: 2px solid #ddc;
  46. border-left: 2px solid #ddc;
  47. border-radius: 3px;
  48. border-right: 2px solid #ddc;
  49. border-top: 2px solid #ddc;
  50. padding: 1.5em;
  51. }
  52. hr {
  53. margin-bottom: 2em;
  54. margin-top: 2em;
  55. }
  56. p, ul li, ol li, ul {
  57. }
  58. td {
  59. vertical-align: top;
  60. }
  61. h1, h2, h3, h4, h5, h6 {
  62. font-family: "Georgia", "DejaVu Serif", "Bitstream Vera Serif", "Lucida Bright", serif;
  63. font-weight: normal;
  64. }
  65. h1 {
  66. border-bottom: 1.5px solid black;
  67. font-size: 2em;
  68. padding-bottom: 5px;
  69. }
  70. h1.bigtitle {
  71. border-bottom: none;
  72. font-size: 3.2em;
  73. margin-bottom: 0;
  74. margin-left: auto;
  75. margin-right: auto;
  76. padding-bottom: 0;
  77. }
  78. h2 {
  79. font-size: 1.35em;
  80. }
  81. a {
  82. font-style: none;
  83. text-decoration: underline;
  84. }
  85. pre {
  86. background-color: white;
  87. border: 1px solid #ddc;
  88. border-radius: 3px;
  89. color: black;
  90. margin-bottom: 2em;
  91. margin-left: 2em;
  92. margin-top: 2em;
  93. max-width: 56em;
  94. padding: 1em;
  95. white-space: pre-wrap;
  96. }
  97. p code {
  98. border: 1px solid #ddc;
  99. border-radius: 3px;
  100. font-size: normal;
  101. padding: 2px;
  102. }
  103. img {
  104. margin-top: 2em;
  105. margin-bottom: 2em;
  106. }
  107. .sidenote {
  108. font-size: small;
  109. /* margin-right: -170px; */
  110. max-width: 200px;
  111. position: absolute;
  112. right: 20px;
  113. top: auto; /* default */
  114. }
  115. blockquote {
  116. border-left: 1px solid #ddc;
  117. padding-left: 1em;
  118. }
  119. blockquote.callout {
  120. float: right;
  121. font-size: 1.1em;
  122. margin-left: 2em;
  123. margin-right: 0;
  124. margin-top: 0;
  125. width: 30%;
  126. }
  127. blockquote.callout p {
  128. margin-top: 0;
  129. }