/ docs / style.css
style.css
 1  /* GitField Minimal Stylesheet for artwork */
 2  body {
 3      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 4      max-width: 800px;
 5      margin: 0 auto;
 6      padding: 2rem;
 7      line-height: 1.6;
 8      color: #333;
 9      background: #fff;
10  }
11  header {
12      text-align: center;
13      border-bottom: 1px solid #eee;
14      padding-bottom: 1rem;
15      margin-bottom: 2rem;
16  }
17  h1, h2 {
18      color: #1a1a1a;
19  }
20  h1 {
21      font-size: 1.8rem;
22  }
23  h2 {
24      font-size: 1.4rem;
25      margin-top: 2rem;
26  }
27  a {
28      color: #0066cc;
29      text-decoration: none;
30  }
31  a:hover {
32      text-decoration: underline;
33  }
34  ul {
35      padding-left: 1.5rem;
36  }
37  code {
38      background: #f4f4f4;
39      padding: 0.2rem 0.4rem;
40      border-radius: 3px;
41  }
42  footer {
43      text-align: center;
44      margin-top: 3rem;
45      font-size: 0.9rem;
46      color: #666;
47  }