diff --git a/docs/style.css b/docs/style.css new file mode 100644 index 0000000..ee8f103 --- /dev/null +++ b/docs/style.css @@ -0,0 +1,47 @@ +/* GitField Minimal Stylesheet for the-labyrinth-of-the-self-other-engine */ +body { + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; + max-width: 800px; + margin: 0 auto; + padding: 2rem; + line-height: 1.6; + color: #333; + background: #fff; +} +header { + text-align: center; + border-bottom: 1px solid #eee; + padding-bottom: 1rem; + margin-bottom: 2rem; +} +h1, h2 { + color: #1a1a1a; +} +h1 { + font-size: 1.8rem; +} +h2 { + font-size: 1.4rem; + margin-top: 2rem; +} +a { + color: #0066cc; + text-decoration: none; +} +a:hover { + text-decoration: underline; +} +ul { + padding-left: 1.5rem; +} +code { + background: #f4f4f4; + padding: 0.2rem 0.4rem; + border-radius: 3px; +} +footer { + text-align: center; + margin-top: 3rem; + font-size: 0.9rem; + color: #666; +}