Created
August 5, 2011 20:23
-
-
Save juanpabloaj/1128425 to your computer and use it in GitHub Desktop.
download joshuaclayton-blueprint-css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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