Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <title>Some text</title>
  6. <meta charset="utf-8">
  7. <link type="text/css" rel="stylesheet" href="css/main.css">
  8. </head>
  9.  
  10. <body>
  11. <div class="main-block">
  12. <div class="main">
  13. <div class="item"></div>
  14. <div class="item"></div>
  15. <div class="item"></div>
  16. <div class="item"></div>
  17. <div class="item"></div>
  18. <div class="item"></div>
  19. <div class="item"></div>
  20. <div class="item"></div>
  21. <div class="item"></div>
  22. </div>
  23. </div>
  24. </body>
  25. </html>
  26.  
  27.  
  28.  
  29.  
  30.  
  31. html, body {
  32. padding: 0;
  33. min-height: 100%;
  34. font-size: 14px;
  35. width: 100%;
  36. background-color: white;
  37. margin: 0;
  38. }
  39. p {
  40. margin: 3px;
  41. }
  42. div {
  43. box-sizing: border-box;
  44. }
  45. .main-block {
  46. width: 90%;
  47. margin: 1% 5%;
  48. background: gray;
  49. padding-top: 1%;
  50. }
  51. .main {
  52. width: 90%;
  53. margin: 1% 5%;
  54. background: #cbdba6;
  55. padding-top: 1%;
  56. text-align: center;
  57. }
  58.  
  59. .item {
  60. width: 10%;
  61. height: 150px;
  62. border: 1px solid white;
  63. background: red;
  64. display: inline-block;
  65. float: left;
  66. }
  67.  
  68. .main::after {
  69. content: " ";
  70. clear: both;
  71. display: block;
  72. }
  73.  
  74.  
  75.  
  76. @media screen and (max-width: 1000px) {
  77. .main-block, .main {
  78. margin: 1% auto;
  79. width: 95%;
  80. }
  81. .item {
  82. width: 32%;
  83. }
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement