From e6f07e6c65c08cdb24b203a6352b0c8067caf658 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Fri, 16 Oct 2015 13:25:51 +0200 Subject: Add basic styling. --- .gitignore | 3 +++ Makefile | 8 ++++++-- style.scss | 8 ++++++++ 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 style.scss diff --git a/.gitignore b/.gitignore index 2d19fc7..ac2dbe2 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ +.sass-cache/ +*.css +*.css.map *.html diff --git a/Makefile b/Makefile index 0d9346a..311a56a 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ hypertext-snippets = $(markdown-snippets:%.mdwn=%.html) markdown := $(filter-out $(markdown-snippets),$(wildcard *.mdwn)) hypertext = $(subst index/index,index,$(markdown:%.mdwn=%/index.html)) -all: $(hypertext) +all: $(hypertext) style.css update: source all source: .git @@ -15,11 +15,15 @@ $(hypertext-snippets): %.html: %.mdwn Makefile %.html %/index.html: %.mdwn $(hypertext-snippets) Makefile $(if $(filter-out ./,$(dir $@)),mkdir -p $(dir $@)) - pandoc -s -B topbar.html -A footer.html -f markdown -t html -o $@ $< + pandoc -s -c style.css -B topbar.html -A footer.html -f markdown -t html -o $@ $< + +%.css : %.scss Makefile + scss --compass --style compressed $< $@ clean: find -type f -name '*.html' -delete find -type d -empty -delete + rm -rf .sass-cache MAKEFLAGS += --jobs .NOTPARALLEL: source diff --git a/style.scss b/style.scss new file mode 100644 index 0000000..567397f --- /dev/null +++ b/style.scss @@ -0,0 +1,8 @@ +/*! style.css | @License: GPL-3+ | http://couchdesign.dk/ */ + +@import "normalize"; +@import "compass/typography"; + +.topbar ul { + @include inline-list; +} -- cgit v1.2.3