furthering the sass meme

This commit is contained in:
shockrahwow 2019-11-26 23:40:52 -08:00
parent f1dd3155ac
commit 67022d182b
4 changed files with 28 additions and 9 deletions

View File

@ -1,14 +1,11 @@
# Building primarily css here
sass=static/sass/*
css=
css=static/css/
for item in $(sass) \
css=$(css) $${item: scss:css} \
done
all: sass run
all:
mkdir -p static/css/
for item in $(css) \
sass static/sass
sass static/sass:static/css
sass:
sh scripts/build-sass.sh
run:
npm start

View File

@ -0,0 +1,8 @@
#!/bin/sh
sassDir='src/sass/'
cssDir='src/css/'
for i in $sassDir/*;do
sass $i $cssDir/`basename $i`
done

View File

@ -0,0 +1,13 @@
/* Overrides for the welcome page background stuff */
/* For now we'll just worry about dark mode
Light mode gets fucked here lmao
*/
$top-grey: #424242;
$back-grey: #303030;
$bar-grey: #212121;
body {
background: $back-grey;
}

View File

@ -0,0 +1 @@
@use 'general';