47 lines
832 B
CSS
47 lines
832 B
CSS
/* GitField Minimal Stylesheet for the-covenant-of-recursive-grace */
|
|
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;
|
|
}
|