Add the Yellow & Green Colorscheme to the /purchase page
authorIra W. Snyder <devel@irasnyder.com>
Sat, 24 Nov 2007 06:07:07 +0000 (22:07 -0800)
committerIra W. Snyder <devel@irasnyder.com>
Sat, 24 Nov 2007 06:07:07 +0000 (22:07 -0800)
Signed-off-by: Ira W. Snyder <devel@irasnyder.com>
app/views/layouts/purchase.rhtml
public/stylesheets/videostore.css [new file with mode: 0644]

index 0499b84..0423231 100644 (file)
@@ -6,13 +6,20 @@
   <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
   <title>Purchase: <%= controller.action_name %></title>
   <%= stylesheet_link_tag 'scaffold' %>
+  <%= stylesheet_link_tag 'videostore', :media => "all" %>
 </head>
 <body>
 
+<div id="header">
+  <h1 id="header">PripPropPrix (formerly ACME Video)</h1>
+</div>
+
 <p style="color: green"><%= flash[:notice] %></p>
 <p style="color: red"><%= flash[:error] %></p>
 
-<%= yield  %>
+<div id="main">
+  <%= yield :layout %>
+</div>
 
 </body>
 </html>
diff --git a/public/stylesheets/videostore.css b/public/stylesheets/videostore.css
new file mode 100644 (file)
index 0000000..e2de91b
--- /dev/null
@@ -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;
+}