Hosted pages
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

style

+41 -1
+41 -1
index.html
··· 6 6 <meta charset="utf-8"> 7 7 <script src="https://jon.recoil.org/_x-ocaml/x-ocaml.js"></script> 8 8 9 - <title>OCaml notebook</title></head> 9 + <title>OCaml notebook</title> 10 + <style> 11 + * { box-sizing: border-box; margin: 0; padding: 0; } 12 + body { 13 + font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif; 14 + line-height: 1.6; 15 + color: #1a1a2e; 16 + background: #f8f9fa; 17 + max-width: 900px; 18 + margin: 0 auto; 19 + padding: 2rem 1.5rem; 20 + } 21 + h1 { 22 + font-size: 1.8rem; 23 + margin-bottom: 1rem; 24 + border-bottom: 2px solid #e0e0e0; 25 + padding-bottom: 0.5rem; 26 + } 27 + h2 { 28 + font-size: 1.3rem; 29 + margin: 1.5rem 0 0.75rem; 30 + color: #333; 31 + } 32 + h2 .anchor { text-decoration: none; color: inherit; } 33 + h2 .anchor:hover::before { content: "#"; margin-right: 0.3em; color: #aaa; } 34 + p { margin: 0.5rem 0 1rem; color: #555; } 35 + x-ocaml { 36 + display: block; 37 + background: #fff; 38 + border: 1px solid #e0e0e0; 39 + border-radius: 6px; 40 + padding: 1rem; 41 + margin: 0.75rem 0; 42 + font-family: "SF Mono", "Fira Code", "Cascadia Code", monospace; 43 + font-size: 0.85rem; 44 + overflow-x: auto; 45 + white-space: pre-wrap; 46 + line-height: 1.5; 47 + } 48 + </style> 49 + </head> 10 50 <body> 11 51 <h1>OxCaml Notebook</h1> 12 52