Commit 54dd73d3

luu stiles <luuduong@gmail.com>
2011-12-28 18:57:07
added footer to custom css file and main app master file
1 parent 5be7085
Changed files (3)
app
assets
stylesheets
views
app/assets/stylesheets/custom.css
@@ -1,1 +1,19 @@
 .fright{float:right;}
+
+footer {
+	margin-top:19px;
+  	padding-top:19px;
+    background: none repeat scroll 0 0 #333333;
+    border-top: medium none;
+}
+footer a {
+    color: #FFFFFF;
+}
+footer h3 {
+    color: #999999;
+}
+
+footer #footer-floor {
+    background: none repeat scroll 0 0 #1B1B1B;
+	padding-top: 9px;
+}
\ No newline at end of file
app/views/home/index.html.erb
@@ -5,7 +5,8 @@
 <% if !user_signed_in? %>
 <div class="hero-unit">
   <h1>Hello, cake enthusiast!</h1>
-  <p>Interested in celebrating your passion for cakes? Do you make cakes, sell cakes, or just love eating them? Then you've come to the right place! CakeSide is a community where you can share and connect with other cake fanatics like yourself!</p>
+  <p>Interested in celebrating your passion for cakes? Do you make cakes, sell cakes, or just love eating them? Then you've come to the right place!</p> 
+<p>CakeSide is a community where you can share and connect with other cake fanatics like yourself!</p>
   <p><a href="<%= url_for new_user_session_path %>" class="btn primary large">Learn more &raquo;</a></p>
 </div>
 <%= render "shared/creation_image_gallery" %>
app/views/layouts/application.html.erb
@@ -70,11 +70,69 @@
         <%= yield %>
       </div>
 
-      <footer>
-      <p>Copyright &copy; 2012 CakeSide Inc. | <a href="/terms.html"> Terms</a> &amp; <a href="/privacy.html"> Privacy</a> | Contact Us <a href="http://twitter.com/cakeside">@cakeside</a> | <a href="https://www.facebook.com/pages/CakeSide/214607468615074">facebook</a></p>
-      </footer>
+
 
     </div> <!-- /container -->
+    <footer>
+	    <div class="container">
+			<div class="row">
+			<div class="span8">
+				<div class="row">
+				 <div class="span4">
+					<h3>CakeSide</h3>
+					<ul class="unstyled">
+					<li>
+					<a href="/">Home</a>
+					</li>
+					<li>
+					<a href="/">Sign-Up</a>
+					</li>
+					<li>
+					<a href="/">About Us</a>
+					</li>
+					<li>
+					<a href="/">Why CakeSide?</a>
+					</li>
+					</ul>
+				  </div>
+				 <div class="span4">
+				 	<h3>Contact</h3>
+					  <ul class="unstyled">
+						<li>
+							<a href="/">Give Feedback</a>
+						</li>
+						<li>
+							<a href="/">Twitter</a>
+						</li>
+						<li>
+							<a href="/">Facebook</a>
+						</li>
+						<li>
+							<a href="/"></a>
+						</li>
+					  </ul>
+				 </div>
+				</div>
+			</div>
+			<div class="span8"></div>
+			</div>
+     </div>		
+		
+
+<div id="footer-floor">		
+        <div class="container">
+          <div class="row">
+            <div class="span10">
+             <p>Copyright &copy; 2012 CakeSide Inc. | <a href="/terms.html"> Terms</a> &amp; <a href="/privacy.html"> Privacy</a> | Contact Us <a href="http://twitter.com/cakeside">@cakeside</a> | <a href="https://www.facebook.com/pages/CakeSide/214607468615074">facebook</a></p>
+            </div>
+            <div class="span6">
+            </div>
+          </div>
+        </div>
+</div>	
+
+	  </footer>
+
 
     <%= render "shared/google_analytics" %>
   </body>