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.

139 lines
2.0 KiB

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