diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-02-21 23:43:59 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-02-21 23:43:59 -0500 |
| commit | 57eb35939f02cedef1bc6833cf029da34d956d11 (patch) | |
| tree | 66828ca3beaba337dcc9d4262cee22ce445ac623 | |
| parent | cdc1ab6edb241e9fb973eff28ae5ff370d805222 (diff) | |
Start styling - make the columns a readable width.
| -rw-r--r-- | layouts/_default/baseof.html | 1 | ||||
| -rw-r--r-- | static/site.css | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index 1714af4..1297971 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -7,6 +7,7 @@ {{- with .OutputFormats.Get "rss" }} <link rel="{{ .Rel }}" type="{{ .MediaType.Type }}" href="{{ .Permalink }}" title="{{ site.Title }}"> {{- end }} + <link rel="stylesheet" type="text/css" href="/site.css"> {{- block "opengraph" . }} {{- if .Title }}<meta property="og:title" content="{{ .Title }}">{{ end }} {{- if .Summary }}<meta property="og:description" content="{{ .Summary }}">{{ end }} diff --git a/static/site.css b/static/site.css new file mode 100644 index 0000000..ae2d464 --- /dev/null +++ b/static/site.css @@ -0,0 +1,5 @@ +body { + max-width: 40em; + margin-left: auto; + margin-right: auto; +} |
