Commit bdb67ac9a13f1e2dc1c96c93a069a5d1cb9bfc74

Authored by Dan Croak
1 parent 6ae240af

better default styles

public/stylesheets/screen.css 0 → 100644
... ... @@ -0,0 +1,11 @@
  1 +body {
  2 + background-color: #dadada; }
  3 +
  4 +.content {
  5 + background: #fff;
  6 + padding: 40px;
  7 + margin: 40px auto;
  8 + width: 880px;
  9 + -moz-border-radius: 24px;
  10 + -webkit-border-radius: 24px; }
  11 +
... ...
script/create_project
... ... @@ -62,7 +62,7 @@ Dir.glob("#{project_directory}/**/session_store.rb").each do |file|
62 62 search_and_replace(file, changesession, Digest::MD5.hexdigest("#{project_name} #{datestring}"))
63 63 end
64 64  
65   -run("sudo touch public/stylesheets/#{project_name}.css")
  65 +run("sudo mv public/stylesheets/screen.css public/stylesheets/#{project_name}.css")
66 66  
67 67 run("git commit -a -m 'New Heroku Suspenders app'")
68 68  
... ...