Advertisement
Guest User

123

a guest
Oct 21st, 2016
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.61 KB | None | 0 0
  1. html,
  2. body {
  3.     margin: 0;
  4.     padding: 0;
  5. }
  6.  
  7. body {
  8.     width: 450px;
  9.     height: 335px;
  10.     font-family: "Arial", sans-serif;
  11.     font-size: 10px;
  12.     color: white;
  13. }
  14.  
  15. /*
  16.     Используемые цвета:
  17.     #34495e – мокрый асфальт
  18.     #c0392b – красный
  19.     #3498DB – синий
  20. */
  21.  
  22. * {
  23.     box-sizing: border-box;
  24. }
  25.  
  26. .wrapper {
  27.     background-color: #34495e;
  28.     width: 450px;
  29.     height: 160px;    
  30. }
  31.  
  32. .header {
  33.     background-color: #c0392b;
  34.     padding: 5px;
  35.     float: left;
  36.     width: 325px;
  37.     height: 40px;
  38.     margin-top: 10px;
  39.     margin-left: 60px;    
  40. }
  41.  
  42. .menu {
  43.     background-color: #3498DB;
  44.     height: 35px;
  45.     width: 450px;
  46.     float: left;
  47.     margin-top: 10px;
  48.     padding-left: 65px;
  49.     padding-top: 5px;
  50. }
  51.  
  52. .promo1 {
  53.     float:left;
  54.     width: 150px;
  55.     height: 50px;
  56.     background-color: #c0392b;
  57.     margin-top: 25px;
  58.     margin-left: px;
  59.     margin-right: 0 auto;
  60.     padding: 5px;
  61.  
  62. }
  63.  
  64. .promo2 {
  65.     float: left;
  66.     width: 150px;
  67.     height: 50px;
  68.     background-color: #c0392b;
  69.     margin-top: 25px;
  70.     margin-left: 5px;
  71.     padding: 5px;
  72.  
  73. }
  74.  
  75.  
  76.  
  77.  
  78. <!DOCTYPE html>
  79. <html lang="ru">
  80.     <head>
  81.         <title>Испытание: строим сетку</title>
  82.         <meta charset="utf-8">
  83.     </head>
  84.     <body>
  85.          <div class="wrapper">
  86.             <div class="header">Header</div>
  87.             <div class="menu">Menu<div>
  88.             <div class="promo1">Promo 1</div>
  89.             <div class="promo2 clearfix">Promo 2</div>
  90.  
  91.         </div>
  92.        
  93.        
  94.     </body>
  95. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement