Advertisement
saasbook

simple.css

Jan 10th, 2012
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.38 KB | None | 0 0
  1. /* Simple CSS styling for RottenPotatoes app */
  2. /* Add these lines to app/assets/stylesheets/application.css */
  3.  
  4.  
  5. html {
  6.     font-family: Verdana,Helvetica,sans-serif;
  7.     color: navy;
  8. }
  9.  
  10. body {
  11.     background-color: silver;
  12. }
  13.  
  14. h1, h2 {
  15.     background-color: #ddd;
  16.     margin: 0;
  17. }
  18. form label {
  19.     display: block;
  20.     color: #333;
  21.     font-style: italic;
  22.         padding-top: 1ex;
  23.         padding-left: 1ex;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement