Skip to content

Instantly share code, notes, and snippets.

@juanpabloaj
Created August 5, 2011 20:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juanpabloaj/1128425 to your computer and use it in GitHub Desktop.
Save juanpabloaj/1128425 to your computer and use it in GitHub Desktop.
download joshuaclayton-blueprint-css
#!/bin/bash
wget --no-check-certificate https://github.com/joshuaclayton/blueprint-css/tarball/master
mv master master.tar.gz
tar xfz master.tar.gz
mv joshuaclayton-blueprint-css*/blueprint .
rm -rf master.tar.gz
rm -rf joshuaclayton-*
echo "Add this :"
echo -e '
<link rel="stylesheet" href="css/blueprint/screen.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="css/blueprint/print.css" type="text/css" media="print">
<!--[if lt IE 8]>
<link rel="stylesheet" href="css/blueprint/ie.css" type="text/css" media="screen, projection">
<![endif]-->
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment