diff --git a/Makefile b/Makefile index eb6d276..0f292dd 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,7 @@ post-htmls := $(patsubst $(src)/%.md,$(www)/%.html,$(post-sources)) .PHONY: all serve clean $(post_index) all: $(POSTCC) $(post-htmls) $(post_index) $(www_root)/static + cp -R ~/www/* $(www_root) $(www): mkdir -p $(www) @@ -24,7 +25,7 @@ $(www)/%.html: $(src)/%.md $(www) # make sure that this target is .PHONY! $(post_index): - echo LOL > $@ + echo hm > $@ $(www_root)/static: diff --git a/src/webcc.ml b/src/webcc.ml index 52a93c5..68c3106 100644 --- a/src/webcc.ml +++ b/src/webcc.ml @@ -71,7 +71,7 @@ let format_page ~title ~contents =
diff --git a/static/style.css b/static/style.css index 4176a5e..ea15fec 100644 --- a/static/style.css +++ b/static/style.css @@ -29,8 +29,10 @@ html { } body { + font-family: 'Latin Modern', serif; + font-size: 110%; line-height: 1.8; - + max-width: 100ch; min-height: 100vh; overflow-x: hidden;