Dz16js.html 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <style>
  10. body {
  11. margin: 0;
  12. }
  13. #mainContainer {
  14. display: flex;
  15. }
  16. header {
  17. display: flex;
  18. background-color:blue;
  19. justify-content: space-between ;
  20. }
  21. #cartIcon {
  22. width: 100%;
  23. height: 70px;
  24. display: flex;
  25. }
  26. #head{
  27. display: flex;
  28. align-items: center;
  29. }
  30. input {
  31. height: 20px;
  32. width: 100px;
  33. margin-right: 10px;
  34. border-radius: 10%;
  35. }
  36. #batton{
  37. width: 65px;
  38. height: 25px;
  39. margin: 0;
  40. padding: 0;
  41. margin-right: 10px;
  42. }
  43. #battonchik {
  44. width: 65px;
  45. height: 25px;
  46. margin: 0;
  47. padding: 0;
  48. }
  49. #mainContainer{
  50. background-color: yellow;
  51. }
  52. #aside {
  53. width: 16.7%;
  54. padding-left: 10px;
  55. background-color:lawngreen;
  56. }
  57. #aside>a {
  58. display: flex;
  59. padding-top: 5px;
  60. text-decoration: none;
  61. color: black;
  62. }
  63. #main {
  64. padding-left: 10px;
  65. }
  66. #main>a {
  67. display: block;
  68. padding-top: 5px;
  69. text-decoration: none;
  70. color: black;
  71. }
  72. #main>div>img{
  73. max-width: 200px;
  74. }
  75. #main>h1 {
  76. margin-top: 5px;
  77. }
  78. #main>p{
  79. margin: 0;
  80. margin-bottom: 5px;
  81. }
  82. a>img {
  83. width: 250px;
  84. height: 70px;
  85. }
  86. main>div{
  87. border: blue solid 2px;
  88. margin-bottom: 10px;
  89. }
  90. #korzina{
  91. width: 65px;
  92. height: 25px;
  93. margin: 0;
  94. padding: 0;
  95. margin-right: 10px;
  96. }
  97. #purchaseHistory{
  98. width: 65px;
  99. height: 25px;
  100. margin: 0;
  101. padding: 0;
  102. margin-right: 10px;
  103. }
  104. #battonSMakom{
  105. width: 65px;
  106. height: 25px;
  107. margin: 0;
  108. padding: 0;
  109. margin-right: 10px;
  110. }
  111. #accaunt{
  112. margin-right: 20px;
  113. color: yellow;
  114. }
  115. .b-container {
  116. width: 200px;
  117. height: 150px;
  118. background-color: #ccc;
  119. margin: 0px auto;
  120. padding: 10px;
  121. font-size: 30px;
  122. color: #fff;
  123. }
  124. .b-popup {
  125. width: 100%;
  126. min-height: 100%;
  127. background-color: rgba(0, 0, 0, 0.5);
  128. overflow: hidden;
  129. position: fixed;
  130. top: 0px;
  131. }
  132. .b-popup .b-popup-content {
  133. margin: 40px auto 0px auto;
  134. width: 1000px;
  135. min-height: 500px;
  136. padding: 10px;
  137. background-color: yellow;
  138. border-radius: 5px;
  139. box-shadow: 0px 0px 10px #000;
  140. }
  141. .b-popup-content {
  142. padding: 300px;
  143. display: flex;
  144. flex-direction: column;
  145. }
  146. #buttonCloseCartId{
  147. width: 30px;
  148. display: flex;
  149. justify-content: center;
  150. align-items: flex-end;
  151. margin-left: 96%;
  152. }
  153. #tovar{
  154. display: flex;
  155. align-items: center;
  156. justify-content: space-between;
  157. padding: 0 20px;
  158. }
  159. footer{
  160. background:skyblue;
  161. width: 100%;
  162. height: 100px;
  163. }
  164. </style>
  165. </head>
  166. <body>
  167. <header id="header">
  168. <div id='cartIcon'>
  169. <a href="#"><img src="img/Logo_METRO.png" alt=""></a>
  170. </div>
  171. <div id="head">
  172. <h1 id="accaunt"></h1>
  173. <button id="korzina">Кошик</button>
  174. <button id ="purchaseHistory">Історія покупок</button>
  175. <input type="text" id="login">
  176. <input type="password" id="password">
  177. <button id="batton">Вхід</button>
  178. <button id="battonSMakom">Вихід</button>
  179. <button id = "battonchik">Реєстрація</button>
  180. </div>
  181. </header>
  182. <div id='mainContainer'>
  183. <aside id='aside'>
  184. Категории
  185. </aside>
  186. <main id='main'>
  187. Контент
  188. </main>
  189. </div>
  190. <footer id="footer"></footer>
  191. <script src='index.js'></script>
  192. </body>
  193. </html>