diff --git a/app.rb b/app.rb index 84b746b..6721fda 100644 --- a/app.rb +++ b/app.rb @@ -27,6 +27,7 @@ __END__ %html %head %title Find My Candidates + %link{ :rel => 'stylesheet', :type => 'text/css', :href => 'style.css' } %body #main %h1 Find My Candidates diff --git a/config.ru b/config.ru index 955296f..06f4b35 100644 --- a/config.ru +++ b/config.ru @@ -1,2 +1,4 @@ +# For deploying on Heroku + require 'app' run Sinatra::Application diff --git a/public/style.css b/public/style.css new file mode 100644 index 0000000..e4dda85 --- /dev/null +++ b/public/style.css @@ -0,0 +1,4 @@ +body +{ + background-color: beige; +} \ No newline at end of file