sherwood 0.8.0

A static site generator with built-in development server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* Base styles for typography and layout */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  color: var(--color-primary);
  background-color: var(--color-background);
}

/* Main content wrapper */
main {
  width: 100%;
}