Notice you also need to partially disable the div/span on the left (or make it hidden) In the HTML this means starting a comment right after the body ### <body> <!-- ### and closing it when the text starts ### </div> --> <p></p><p>The human ###

形式
Plain text
投稿日時
2023-01-31 01:05
公開期間
無期限
  1. /* Layout: 980px fixed-width: 40px margin, 600px main tex, */
  2. /* 40px margin, 240px for toc and marginalia, 40px margin */
  3. /* */
  4. /* */
  5. /* Colours: */
  6. /* */
  7. /* #1C3950: header and h1 background, h2, h3 foreground, main links */
  8. /* HSV: 207, 65, 31 */
  9. /* Decimal RGB: 28, 57, 80 */
  10. /* */
  11. /* #2A6EA6; link colour, graph line colour, d3 paths, widgets */
  12. /* HSV: 207, 75, 65 */
  13. /* Decimal RGB: 42, 110, 166 */
  14. /* */
  15. /* #FFA933: complement to #2A6EA6, for use on graphs */
  16. /* */
  17. /* Triad: #2A6EA6, #FFCD33, #FF7033 */
  18. /* */
  19. /* #eee: header text */
  20. /* Reset */
  21. body {
  22. background: #fff;
  23. font-style: normal;
  24. font: 15pt 'Georgia', 'Times New Roman', serif;
  25. line-height: 1.7;
  26. /* font-family: "Helvetica", "Arial", sans-serif; */
  27. color: #000;
  28. width: 100%;
  29. /*width: 800px;*/
  30. margin: 0;
  31. padding: 0;
  32. text-align: left;
  33. position: relative;
  34. }
  35. /* Header */
  36. .header, .nonumber_header {
  37. position: relative;
  38. top: 0px;
  39. width: 100%;
  40. margin: 0;
  41. background-color: #1C3950;
  42. }
  43. .header {
  44. height: 120px;
  45. }
  46. .nonumber_header {
  47. height: 80px;
  48. }
  49. h1 {
  50. position: absolute;
  51. top: 0px;
  52. left: 40px;
  53. right: 40px;
  54. padding: 0px;
  55. margin: 0px;
  56. font-family: "Helvetica", "Arial", sans-serif;
  57. font-size: 34px;
  58. line-height: 1.2;
  59. color: #eee;
  60. white-space: nowrap;
  61. font-weight: 400;
  62. }
  63. h1.chapter_number {
  64. margin-top: 10px;
  65. font-size: 24px;
  66. border-bottom: 1px solid #BBB;
  67. }
  68. h1.chapter_number a {
  69. color: #eee;
  70. }
  71. h1.chapter_title {
  72. margin-top: 56px;
  73. font-size: 34px;
  74. }
  75. h1.chapter_title a {
  76. color: #eee;
  77. }
  78. h2 {
  79. position: absolute;
  80. top: 0px;
  81. left: 40px;
  82. right: 40px;
  83. padding: 0px;
  84. margin: 16px 0px 0px 0px;
  85. font-family: "Helvetica", "Arial", sans-serif;
  86. font-size: 34px;
  87. line-height: 1.2;
  88. color: #eee;
  89. white-space: nowrap;
  90. }
  91. h2 a {
  92. color: #eee;
  93. }
  94. /********/
  95. /* Main */
  96. /********/
  97. #insertion {
  98. font: 15pt 'Georgia', 'Times New Roman', serif;
  99. line-height: 1.7;
  100. color: #333;
  101. padding: 5px 10px 5px 10px;
  102. background: #ccaaaa;
  103. border: 1px solid;
  104. margin: 10px 0px 0px 0px;
  105. }
  106. p {
  107. font: 15pt 'Georgia', 'Times New Roman', serif;
  108. line-height: 1.7;
  109. color: #333;
  110. margin: 0 0 1 0;
  111. }
  112. h3 {
  113. color: #1C3950;
  114. margin: 40px 0px 20px 0px;
  115. padding: 0;
  116. font-size: 32px;
  117. line-height: 1.2;
  118. font-family: "Helvetica", "Arial", sans-serif;
  119. border-bottom: 1px solid #666;
  120. }
  121. h4 {
  122. color: #1C3950;
  123. margin: 30px 0px 15px 0px;
  124. padding: 0;
  125. padding-left: 0px;
  126. font-size: 26px;
  127. line-height: 1.2;
  128. font-family: "Helvetica", "Arial", sans-serif;
  129. }
  130. h5 {
  131. color: #1C3950;
  132. margin: 20px 0px 10px 0px;
  133. padding: 0;
  134. padding-left: 0px;
  135. font-size: 26px;
  136. line-height: 1.2;
  137. font-family: "Helvetica", "Arial", sans-serif;
  138. }
  139. .section {
  140. /*width: 600px;*/
  141. width: 800px;
  142. margin-left: 40px;
  143. }
  144. a {
  145. color: #2A6EA6;
  146. text-decoration: none;
  147. }
  148. a:hover {
  149. text-decoration: underline;
  150. }
  151. .equation_link {
  152. color: #2A6EA6;
  153. }
  154. .equation_link:hover {
  155. text-decoration: underline;
  156. cursor: pointer;
  157. }
  158. .MathJax {
  159. color: #2A2A2A;
  160. }
  161. /* Set the font size for Pygments */
  162. .highlight {
  163. font-size: 9pt;
  164. }
  165. /* Set the font size for code */
  166. tt {
  167. font-size: 12pt;
  168. font-style: monospace;
  169. }
  170. /* d3 styling */
  171. path {
  172. stroke: rgb(42, 110, 166);
  173. stroke-width: 1;
  174. fill: none;
  175. }
  176. .axis {
  177. shape-rendering: crispEdges;
  178. }
  179. .axis text {
  180. font-family: "Helvetica", "Arial", sans-serif;
  181. font-size: 11px;
  182. }
  183. .axis line, .axis path {
  184. stroke: grey;
  185. }
  186. .axisLabel {
  187. font-size: 18px;
  188. font-family: "Helvetica", "Arial", sans-serif;
  189. font-style: italic;
  190. font-weight: bold;
  191. }
  192. /* Table of contents, and margin notes */
  193. #toc, .marginnote, .marginequation {
  194. position: absolute;
  195. /*left: 680px;*/
  196. left: 880px;
  197. width: 260px;
  198. padding: 0;
  199. margin: 0;
  200. }
  201. .sidebar {
  202. margin: 0 0 5px 0;
  203. padding: 0;
  204. font-size: 12pt;
  205. line-height: 1.5;
  206. }
  207. .toc_title {
  208. margin: 0;
  209. padding: 0;
  210. font-size: 12pt;
  211. line-height: 1.5;
  212. }
  213. .toc_not_mainchapter {
  214. margin: 0;
  215. padding: 0 0 0 15px;
  216. font-size: 12pt;
  217. line-height: 1.5;
  218. }
  219. .toc_mainchapter {
  220. margin: 0;
  221. padding: 0 0 0 15px;
  222. text-indent: -15px;
  223. font-size: 12pt;
  224. line-height: 1.5;
  225. }
  226. .toc_reveal {
  227. cursor: pointer;
  228. }
  229. .toc_section {
  230. padding: 0 0 0 15px;
  231. margin: 0;
  232. }
  233. #toc ul {
  234. padding: 0 0 0 15px;
  235. list-style-position: inside;
  236. margin: 0;
  237. line-height: 1.5;
  238. }
  239. .sidebar_title {
  240. font-size: 18pt;
  241. font-family: "Helvetica", "Arial", sans-serif;
  242. }
  243. .marginnote {
  244. font-size: 9pt;
  245. color: #666;
  246. display: inline-block;
  247. visibility: hidden;
  248. }
  249. .marginnote .MathJax {
  250. color: #666;
  251. visibility: hidden;
  252. }
  253. .marginnote tt {
  254. font-size: 9pt
  255. visibility: hidden;
  256. }
  257. .marginequation .MathJax {
  258. color: #2A6EA6;
  259. }
  260. #toc {
  261. font-size: 12pt;
  262. color: #000;
  263. }
  264. /* Footer */
  265. .footer {
  266. position: relative;
  267. top: 0px;
  268. width: 100%;
  269. height: 130px;
  270. margin: 0;
  271. background-color: #1C3950;
  272. }
  273. span.left_footer, span.right_footer {
  274. position: absolute;
  275. top: 12px;
  276. left: 40px;
  277. padding: 0px;
  278. margin: 0px;
  279. font-family: "Helvetica", "Arial", sans-serif;
  280. font-size: 9pt;
  281. font-style: bold;
  282. line-height: 1.5;
  283. color: #eee;
  284. }
  285. span.left_footer {
  286. display: block;
  287. width: 600px;
  288. word-wrap:break-word;
  289. }
  290. span.right_footer {
  291. right: 40px;
  292. text-align: right;
  293. }
  294. .MathJax_Display {
  295. color: #333 !important;
  296. }
  297. /* Adapted from http://worrydream.com/ScrubbingCalculator/style.css, */
  298. /* by Bret Victor */
  299. .videoOverlay {
  300. position: absolute;
  301. cursor: pointer;
  302. background-color: white;
  303. z-index: 100;
  304. }
  305. .videoOverlay img {
  306. position: absolute;
  307. display: block;
  308. }
  309. /* class for text labels on the 3d graphs */
  310. .graph3D {
  311. position: absolute;
  312. font: 15px MJX_Math;
  313. background-color: white;
  314. border-radius: 5px;
  315. line-height: 18px;
  316. padding-top: 0;
  317. padding-right: 3px;
  318. padding-bottom: 0px;
  319. padding-left: 3px;
  320. }
ダウンロード 印刷用表示

このコピペの URL

JavaScript での埋め込み

iframe での埋め込み

元のテキスト