mirror of
https://github.com/arsenetar/pelican-red.git
synced 2026-01-23 15:11:38 +00:00
Consolidate scss output, clean up and restructure sass directory.
Changes output to only one stylesheet, removes uneeded files, renames and trims font files, creates utility script to convert from fontello css file to sass
This commit is contained in:
11
utils/iconsCSStoSASS.sh
Executable file
11
utils/iconsCSStoSASS.sh
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
SASS_PATH="../static/sass/voltaicideas/pelican-red/"
|
||||
INPUT_FILE="${SASS_PATH}pelican-red-codes.css"
|
||||
OUTPUT_FILE="${SASS_PATH}_iconList.scss"
|
||||
|
||||
PREFIX="icon"
|
||||
|
||||
sed -rn "s/^.${PREFIX}-(.*):before.*'\\\e(.*)'; \}.*/@include i-class('\1','\2'); /p" ${INPUT_FILE} > ${OUTPUT_FILE}
|
||||
echo -en '\n\n//Generated on ' >> ${OUTPUT_FILE}
|
||||
date -u >> ${OUTPUT_FILE}
|
||||
echo '' >> ${OUTPUT_FILE}
|
||||
Reference in New Issue
Block a user