updated styling pretty much everywhere

This commit is contained in:
shockrah
2019-09-13 22:30:28 -07:00
parent 71748a8b48
commit 8581af889e
4 changed files with 272 additions and 14 deletions

7
make
View File

@@ -23,7 +23,7 @@ build_all() {
mkdir -p $rootDir/post/ $rootDir/fonts/
cp style.css "$rootDir"
cp style.css "$rootDir/$targetDir"
cp prebuild/post/style.css "$rootDir/post/"
cp fonts/* $rootDir/fonts/
@@ -61,8 +61,8 @@ while getopts ":aslrhp:" opt;do
a)
build_all;;
s)
cp style.css "$rootDir" # root stylesheet
cp style.css "$rootDir/$targetDir" # post stylesheet
cp style.css "$rootDir"
cp prebuild/post/style.css "$rootDir/$targetDir"
exit 0
;;
r)
@@ -75,7 +75,6 @@ while getopts ":aslrhp:" opt;do
;;
p)
for file in ${@:2};do
#echo $file
post $file
done
;;