Skip to content

Instantly share code, notes, and snippets.

@cwonrails
Created November 29, 2017 18:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cwonrails/5fe1d44d5b0b61ebcdc6ba1ce8c8e805 to your computer and use it in GitHub Desktop.
Save cwonrails/5fe1d44d5b0b61ebcdc6ba1ce8c8e805 to your computer and use it in GitHub Desktop.
#!/bin/sh
DL='wget -q'
BASEURL='https://unpkg.com'
STYLESDIR='src/css/vendor'
if [ ! -d "$STYLESDIR" ]; then
mkdir -p $STYLESDIR
fi
### Uncomment any stylesheets you want to download or update ###
## basscss
# $DL $BASEURL/basscss/css/basscss.css -O $STYLESDIR/basscss.css
# $DL $BASEURL/basscss/css/basscss.min.css -O $STYLESDIR/basscss.min.css
## bulma
# $DL $BASEURL/bulma/css/bulma.css -O $STYLESDIR/bulma.css
# $DL $BASEURL/bulma/css/bulma.map.css -O $STYLESDIR/bulma.map.css
## normalize.css
# $DL $BASEURL/normalize.css -O $STYLESDIR/normalize.css
## pure
# $DL $BASEURL/purecss -O $STYLESDIR/pure-min.css
## tachyons
# $DL $BASEURL/tachyons/css/tachyons.css -O $STYLESDIR/tachyons.css
# $DL $BASEURL/tachyons/css/tachyons.min.css -O $STYLESDIR/tachyons.min.css
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment