Commit f6a30ed9

luu stiles <luuduong@gmail.com>
2012-01-15 07:26:10
updated login page yellow to pink for now, css updates, labels in creations list
1 parent 1b962d8
Changed files (5)
app
app/assets/images/sunset.png
Binary file
app/assets/stylesheets/custom.css
@@ -17,4 +17,19 @@ footer h3 {
 footer #footer-floor {
     background: none repeat scroll 0 0 #1B1B1B;
 	padding-top: 9px;
+}
+
+.hero-unit {
+  margin-bottom: 10px;
+  padding-bottom: 10px;
+  padding-top: 20px;
+}
+.hero-unit h1 {
+  margin-bottom: 20px;
+  font-size: 40px;
+}
+
+.logo {
+	padding-left: 30px;
+    padding-top: 30px;
 }
\ No newline at end of file
app/views/devise/sessions/new.html.erb
@@ -1,12 +1,12 @@
 <div class="row">
   <div class="span16">
     <div class="row">
-      <div class="span5">
-        <div class="logo"><a href="/"><img src="/assets/cakeside-logo.png" width="100%"/></a></div>
+      <div class="span8 offset2">
+        <div class="logo"><img src="/assets/cakeside-logo.png" width="100%" alt="cakeside logo"/></div>
       </div>
-      <div class="span5 offset6">
+      <div class="span5 offset1">
         <%= form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f| %>
-          <fieldset>
+          <fieldset style="padding-top:118px;">
             <%= f.email_field :email, :placeholder => 'Email', :size => 20, :class=> "span2" %>
             <%= f.password_field :password, :placeholder => 'Password',:size => 20 , :class=> "span2" %>
             <%= f.submit "Sign In", :class => "btn" %>
@@ -24,13 +24,13 @@
         <% if notice %><p class="alert-message success"><%= notice %></p> <% end %>
         <% if alert %><p class="alert-message error"><%= alert %></p><% end %>
         <%= devise_error_messages! %>
-        <h2>Why CakeSide?</h2>
+        <h3>Why CakeSide?</h3>
         <p>CakeSide is a community dedicated to giving cake artists, bakers, creators, hobbyists, and of course cake lovers a place to share ideas and creations. Explore your creativity and find your inspiration. Resources shared here are all user driven.</p>
-        <h2>About Us</h2>
+        <h3>About Us</h3>
         <p>We are a passionate team dedicated to improve the cake sharing experience. Frustrated with the lack of community that provides more than just photo sharing, CakeSide was born. All features of this site will be user inspired. We love to listen so feel free to give us feedback. Check back often to see what's new in the CakeSide community!</p>
       </div>
       <div class="span5 offset1">
-        <h3>New to CakeSide? <em>Join Today!</em></h3>
+        <h3>New to CakeSide? <em>Join Us!</em></h3>
         <%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
           <p><%= f.text_field :name, :placeholder => 'Full name', :class =>"xlarge"%></p>
           <p><%= f.email_field :email, :placeholder => 'Email', :class=> "xlarge"%></p>
app/views/home/index.html.erb
@@ -4,14 +4,11 @@
 
 <% if !user_signed_in? %>
 <div class="hero-unit">
-  <h1>Hello cake enthusiast!</h1>
-<p>&nbsp;</p>  
-  <p>Do you <strong>make</strong> cakes, <strong>sell</strong> cakes, or just <strong>love</strong> eating them?</p>
-  <p>Then you've come to the right place!</p>
+  <h1>Welcome cake enthusiast!</h1>
+  <p><strong>Make</strong> cakes, <strong>sell</strong> cakes, or just <strong>love</strong> eating them? You've come to the right place!</p>
+  <p>CakeSide is a free site to <strong>share</strong> your cake <strong>creations</strong> and <strong>ideas</strong> with other cake fanatics like yourself!</p>
   <br />
-<p>CakeSide is a free site to <strong>share</strong> your cake <strong>creations</strong> and <strong>ideas</strong> with other cake fanatics like yourself!</p>
-  <br />
-  <p><a href="<%= url_for new_user_session_path %>" class="btn primary large">Learn more &raquo;</a></p>
+  <p><a href="<%= url_for new_user_session_path %>" class="btn primary large">Sign me up &raquo;</a></p>
 </div>
 <% end %>
 <%= render "shared/creation_image_gallery" %>
app/views/shared/_creation_image_gallery.html.erb
@@ -1,3 +1,4 @@
+<h2>Recent Creations</h2>
 <ul class="media-grid">
   <% @creations.each do |creation| %>
     <li><a href="<%= url_for creation %>"><img class="thumbnail" src="<%= creation.image.thumb.url %>" alt="<%= creation.name %>"></a></li>