Advertisement
saasbook

simple.css

Jan 14th, 2012
1,240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.14 KB | None | 0 0
  1. /* Simple CSS styling for RottenPotatoes app */
  2. /* Add these lines to app/assets/stylesheets/application.css */
  3.  
  4. html, body {
  5.   margin: 0;
  6.   padding: 0;
  7.   background: White;
  8.   color: DarkSlateGrey;
  9.   font-family: Tahoma, Verdana, sans-serif;
  10.   font-size: 10pt;
  11. }
  12. div#main {
  13.   margin: 0;
  14.   padding: 0 20px 20px;
  15. }
  16. a {
  17.   background: transparent;
  18.   color: maroon;
  19.   text-decoration: underline;
  20.   font-weight: bold;
  21. }
  22. h1 {
  23.   color: maroon;
  24.   font-size: 150%;
  25.   font-style: italic;
  26.   display: block;
  27.   width: 100%;
  28.   border-bottom: 1px solid DarkSlateGrey;
  29. }
  30. h1.title {
  31.   margin: 0 0 1em;
  32.   padding: 10px;
  33.   background-color: orange;
  34.   color: white;
  35.   border-bottom: 4px solid gold;
  36.   font-size: 2em;
  37.   font-style: normal;
  38. }
  39. table#movies {
  40.   margin: 10px;
  41.   border-collapse: collapse;
  42.   width: 100%;
  43.   border-bottom: 2px solid black;
  44. }
  45. table#movies th {
  46.   border: 2px solid white;
  47.   font-weight: bold;
  48.   background-color: wheat;
  49. }
  50. table#movies th, table#movies td {
  51.   padding: 4px;
  52.   text-align: left;
  53. }
  54. #notice #warning {
  55.   background: rosybrown;
  56.   margin: 1em 0;
  57.   padding: 4px;
  58. }
  59. form label {
  60.   display: block;
  61.   line-height: 25px;
  62.   font-weight: bold;
  63.   color: maroon;
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement