summaryrefslogtreecommitdiff
path: root/blueview/style.scss
AgeCommit message (Collapse)Author
2021-03-24reduce blueview theme: drop superfluous ikiwiki-reset, and move ↵Jonas Smedegaard
ikiwiki-style below boilerplate
2021-03-24deduplicate: import common styling from default themeJonas Smedegaard
2021-03-24convert css to sass 2/2: normalize sass files by generating css onto itselfJonas Smedegaard
i.e. for each theme...: mv -f style.scss style.css sassc --style expanded style.css > style.scss perl -i -pe 's/ /\t/g' style.scss rm -f style.css ...or with git, when rebasing fails: git checkout HEAD^ . [...] git rm -f style.css
2021-03-24convert css to sass 1/2: rename *.css files to *.scss, and add build scriptsJonas Smedegaard