From 59603ee071ecc9e0d62ee5410b6f1f8a404f2fc6 Mon Sep 17 00:00:00 2001 From: "Ira W. Snyder" Date: Fri, 23 Nov 2007 22:07:07 -0800 Subject: [PATCH] Add the Yellow & Green Colorscheme to the /purchase page Signed-off-by: Ira W. Snyder --- app/views/layouts/purchase.rhtml | 9 ++++++++- public/stylesheets/videostore.css | 13 +++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 public/stylesheets/videostore.css diff --git a/app/views/layouts/purchase.rhtml b/app/views/layouts/purchase.rhtml index 0499b84..0423231 100644 --- a/app/views/layouts/purchase.rhtml +++ b/app/views/layouts/purchase.rhtml @@ -6,13 +6,20 @@ Purchase: <%= controller.action_name %> <%= stylesheet_link_tag 'scaffold' %> + <%= stylesheet_link_tag 'videostore', :media => "all" %> + +

<%= flash[:notice] %>

<%= flash[:error] %>

-<%= yield %> +
+ <%= yield :layout %> +
diff --git a/public/stylesheets/videostore.css b/public/stylesheets/videostore.css new file mode 100644 index 0000000..e2de91b --- /dev/null +++ b/public/stylesheets/videostore.css @@ -0,0 +1,13 @@ +h1#header { + font: 400% sans-serif; + color: yellow; + padding: 0em; + margin: 0em; +} + +div#header { + background-color: green; + height: 8em; + margin: 0em; + text-align: center; +} -- 2.25.1