Advertisement
Guest User

CSS

a guest
Oct 6th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.36 KB | None | 0 0
  1. body {
  2.     margin-top: 0;
  3.     background-image: url('../img/background.jpg');
  4.     background-repeat: repeat-x;
  5. }
  6.  
  7. #header {
  8.     margin: 0 auto 0 auto;
  9.     width:960px;
  10.     height: 501px;
  11. }
  12.  
  13. #logo {
  14.     margin: 0 15px 0 10px;
  15.     width: 278px;
  16.     float:left;
  17.     z-index: 1;
  18. }
  19.  
  20. #menu {
  21.     background-color: #eddec5;
  22.     padding: 14px;
  23.     margin: 100px 10px 10px 20px;
  24.     border-radius: 12px;
  25.     float: left;
  26.     font-family: Georgia, serif;
  27.     font-size: 16px;
  28.     color: #533001;
  29.     font-weight: bold;
  30. }
  31.  
  32. #offer {
  33.     position: absolute;
  34.     padding: 0;
  35.     clear: left;
  36.     margin-top: 170px;
  37.     width: 100%;
  38.     height: 331px;
  39.     z-index: -2;
  40. }
  41.  
  42. #left-offer {
  43.     float: left;
  44.     text-align: center;
  45.     background-image: url('../img/offer.jpg');
  46.     background-repeat: repeat-x;
  47.     height: 331px;
  48.     width: 320px;
  49. }
  50.  
  51. #left-offer #title {
  52.     text-transform: uppercase;
  53.     margin: 15px 10px 0 10px;
  54.     font-family: Arial;
  55.     font-size: 27px;
  56.     font-weight: bold;
  57.     color: #5b2f01;
  58. }
  59.  
  60. #price {
  61.     color: #9d0c08;
  62.     font-family: Georgia;
  63.     font-size: 38px;
  64.     font-weight: bold;
  65.     margin: 5px auto 0 auto;
  66. }
  67.  
  68. #desc {
  69.     color: #5b2f01;
  70.     font-family: Arial;
  71.     font-size: 14px;
  72.     font-weight: bold;
  73.     margin: 10px 20px 0 20px;
  74. }
  75.  
  76. #book {
  77.     height: 30px;
  78.     margin: 20px 70px 0 70px;
  79.     background-image: url('../img/book.png');
  80.     border-radius: 5px;
  81.     font-family: Georgia;
  82.     font-weight: bold;
  83.     font-size: 17px;
  84.     color: white;
  85.     text-transform: uppercase;
  86.     line-height: 30px;
  87. }
  88.  
  89. #offer img {
  90.     float:left;
  91. }
  92.  
  93. #check-out {
  94.     position: relative;
  95.     clear: both;
  96.     width: 960px;
  97.     height: 229px;
  98.     margin: 40px auto 0 auto;
  99. }
  100.  
  101. #food {
  102.     background-image: url('../img/bg.png');
  103.     height: 229px;
  104.     margin-right: 20px;
  105.     width: 460px;
  106.     float:left;
  107.     margin-left: 10px;
  108. }
  109.  
  110. #food .small {
  111.     float: right;
  112.     margin-right: 30px;
  113. }
  114.  
  115. #food img {
  116.     position: relative;
  117.     margin-left: -30px;
  118.     margin-top: -10px;
  119.     float: left;
  120. }
  121.  
  122. #beer {
  123.     background-image: url('../img/bg.png');
  124.     height: 229px;
  125.     width: 460px;
  126.     margin-right: 10px;
  127.     float:left;
  128. }
  129.  
  130. #beer img {
  131.     margin: 10px 20px 0 10px;
  132.     float: left;
  133. }
  134.  
  135. #beer .small {
  136.     float: left;
  137. }
  138.  
  139. .small {
  140.     font-family: Arial;
  141.     color: white;
  142.     font-size: 26px;
  143. }
  144.  
  145. .big {
  146.     text-transform: uppercase;
  147.     font-family: Georgia;
  148.     font-weight: bold;
  149.     font-size: 53px;
  150.     color: #fffac2;
  151.     float: left;
  152.     margin-top: 0;
  153.     margin-bottom: 0;
  154. }
  155.  
  156. #beer .big {
  157.     margin-top: 20px;
  158. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement