diff --git a/bin/publish b/bin/publish index d8ecb20..69665a9 100755 --- a/bin/publish +++ b/bin/publish @@ -1,15 +1,15 @@ #!/bin/zsh # Clean artifacts -rm style.css -rm style.css.map +rm style/style.css +rm style/style.css.map rm billros.si.tar.gz # Generate css -sass style.scss style.css +sass style/style.scss style/style.css # Tar it up -tar czf billros.si.tar.gz index.html style.css +tar czf billros.si.tar.gz index.html style # Upload it open https://hpanel.hostinger.com/hosting/billros.si/website/import-website diff --git a/index.html b/index.html index 4e2e97e..88e5961 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,7 @@ Bill Rossi - Software Engineer - + @@ -17,7 +17,5 @@ -

Hello, world!

-

This page is profoundly and deeply under construction. Check back in a couple of days!

diff --git a/style/_autumn.scss b/style/_autumn.scss new file mode 100644 index 0000000..f40d4b5 --- /dev/null +++ b/style/_autumn.scss @@ -0,0 +1,4 @@ +// https://colorhunt.co/palette/9d5c0de5890af7d08afafafa +$color-bg: #9D5C0D; +$color-logo: #F7D08A; +$color-logo-shadow: #E5890A; diff --git a/style/_spring.scss b/style/_spring.scss new file mode 100644 index 0000000..44e32af --- /dev/null +++ b/style/_spring.scss @@ -0,0 +1,4 @@ +// https://colorhunt.co/palette/76ba99adcf9fced89effdcae +$color-bg: #76BA99; +$color-logo: #CED89E; +$color-logo-shadow: #ADCF9F; diff --git a/style/_summer.scss b/style/_summer.scss new file mode 100644 index 0000000..f41fe54 --- /dev/null +++ b/style/_summer.scss @@ -0,0 +1,4 @@ +// https://colorhunt.co/palette/0078aa3ab4f2f2df3af6f6f6 +$color-bg: #0078AA; +$color-logo: #F6F6F6; +$color-logo-shadow: #F2DF3A; diff --git a/style/_winter.scss b/style/_winter.scss new file mode 100644 index 0000000..413b000 --- /dev/null +++ b/style/_winter.scss @@ -0,0 +1,4 @@ +// https://colorhunt.co/palette/242f9b646fd49ba3ebdbdffd +$color-bg: #242F9B; +$color-logo: #9BA3EB; +$color-logo-shadow: #646FD4; diff --git a/style.scss b/style/style.scss similarity index 91% rename from style.scss rename to style/style.scss index 39d7fb4..df2d782 100644 --- a/style.scss +++ b/style/style.scss @@ -1,10 +1,11 @@ +// @use 'spring' as *; +@use 'summer' as *; +// @use 'autumn' as *; +// @use 'winter' as *; + $font-edu-vic: 'Edu VIC WA NT Beginner', cursive; $font-righteous: 'Righteous', cursive; -$color-bg: #2b0202; -$color-logo: #e0a94a; -$color-logo-shadow: #db832a; - body { margin: 0px; background-color: $color-bg;