style.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. body {
  2. margin: 0;
  3. background-color: aqua;
  4. }
  5. header {
  6. display: flex;
  7. justify-content: space-between;
  8. background-color: yellow;
  9. height: 100px;
  10. max-width: 1800px;
  11. }
  12. .qwer {
  13. display: flex;
  14. align-items: center;
  15. }
  16. button {
  17. height: 50px;
  18. width: 150px;
  19. margin-right: 30px;
  20. background-color: aqua;
  21. border-radius: 15px;
  22. color: darkblue;
  23. font-size: 20px;
  24. }
  25. button:hover {
  26. transition: 300ms;
  27. background-color: aliceblue;
  28. }
  29. input {
  30. height: 20px;
  31. width: 100px;
  32. margin-right: 30px;
  33. border-radius: 15px;
  34. padding-left: 10px;
  35. }
  36. .mainBlock {
  37. background-color: aquamarine;
  38. width: 1500px;
  39. min-height: 2000px;
  40. padding-left: 30px;
  41. }
  42. #mainContainer {
  43. display: flex;
  44. }
  45. #aside {
  46. padding: 20px 20px 20px 20px;
  47. width: 30%;
  48. width: 300px;
  49. }
  50. #aside > a {
  51. display: block;
  52. }
  53. a,
  54. p {
  55. font-size: 30px;
  56. text-decoration: none;
  57. }
  58. a {
  59. color: black;
  60. }
  61. a:hover {
  62. opacity: 0.5;
  63. }
  64. #main {
  65. font-size: 30px;
  66. }
  67. .cartIcon {
  68. padding: 10px 0 0 20px;
  69. height: 80px;
  70. }
  71. #productPicture {
  72. width: 200px;
  73. }
  74. #productBlock {
  75. display: flex;
  76. flex-wrap: wrap;
  77. }
  78. #productBlock img {
  79. width: 300px;
  80. height: 300px;
  81. }
  82. #productBlock h2 {
  83. margin-top: 60px;
  84. }
  85. #flexBlockForGFO div button {
  86. margin-left: 30px;
  87. }
  88. #productBlock p,
  89. #productBlock h2{
  90. margin-left: 30px;
  91. }
  92. #productBlock #goodOneImg {
  93. padding-top: 30px;
  94. width: 500px;
  95. height: 500px;
  96. }
  97. #flexBlockForGFO {
  98. display: flex;
  99. }
  100. #productBlock a:hover {
  101. opacity: 0.8;
  102. }
  103. #subCategories {
  104. margin: 0 30px 30px 0
  105. }
  106. .card {
  107. display: flex;
  108. margin-bottom: 30px;
  109. }
  110. .card div {
  111. padding: 40px;
  112. border-bottom: 2px solid black;
  113. border-right: 2px solid black;
  114. border-top: 2px solid black;
  115. min-width: 1030px;
  116. }
  117. #flexBlock {
  118. display: flex;
  119. padding-top: 30px;
  120. }
  121. #textBlock {
  122. padding-left: 30px;
  123. }
  124. flexBlock img {
  125. height: 400px;
  126. width: 400px;
  127. }
  128. #h2text {
  129. padding-right: 30px;
  130. }
  131. .b-container {
  132. width: 200px;
  133. height: 150px;
  134. background-color: #ccc;
  135. margin: 0px auto;
  136. padding: 10px;
  137. font-size: 30px;
  138. color: #fff;
  139. }
  140. .b-popup {
  141. width: 100%;
  142. min-height: 100%;
  143. background-color: rgba(0, 0, 0, 0.5);
  144. overflow: hidden;
  145. position: fixed;
  146. top: 0px;
  147. }
  148. .b-popup .b-popup-content {
  149. margin: 40px auto 0px auto;
  150. width: 1000px;
  151. min-height: 500px;
  152. padding: 10px;
  153. background-color: yellow;
  154. border-radius: 5px;
  155. box-shadow: 0px 0px 10px #000;
  156. }
  157. .b-popup-content {
  158. padding: 300px;
  159. display: flex;
  160. flex-direction: column;
  161. }
  162. #divToCart {
  163. align-items: center;
  164. padding: 30px;
  165. display: flex;
  166. width: 700px;
  167. }
  168. #divToCart img {
  169. max-width: 100px;
  170. max-height: 100px;
  171. }
  172. #divToCart img,
  173. #divToCart h2 {
  174. margin-right: 30px;
  175. }
  176. #divToCart h2 {
  177. align-items: center;
  178. }
  179. .b-popup-content button {
  180. width: 30px;
  181. height: 30px;
  182. margin: 0;
  183. }
  184. #buttonCloseCartId {
  185. position: absolute;
  186. top: 70px;
  187. right: 420px;
  188. }
  189. #buttonDelete {
  190. width: 100px;
  191. position: absolute;
  192. top: 70px;
  193. right: 500px;
  194. }
  195. .b-poput-container-flex {
  196. justify-content: center;
  197. }
  198. .b-poput-container-flex input {
  199. margin-bottom: 30px;
  200. width: 300px;
  201. height: 40px;
  202. font-size: 20px;
  203. margin: 20px auto;
  204. text-align: center;
  205. }
  206. .b-poput-container-flex h2 {
  207. margin: 10px auto;
  208. }
  209. .b-poput-container-flex #buttonCloseCartId {
  210. bottom: 910px;
  211. }
  212. #regInput,
  213. #loginInputt {
  214. width: 150px;
  215. height: 50px;
  216. margin: 10px auto;
  217. }
  218. .addToCartButton {
  219. font-size: 14px;
  220. }
  221. #buttonPlus,
  222. #buttonMinus {
  223. margin-right: 10px;
  224. }
  225. #pCount {
  226. border-radius: 50%;
  227. background-color: red;
  228. width: 10px;
  229. height: 10px;
  230. font-size: 14px;
  231. }
  232. .buyBlock {
  233. display: flex;
  234. align-items: center;
  235. justify-content: end;
  236. }
  237. .buyBlock button {
  238. width: 150px;
  239. height: 50px;
  240. margin: 0 30px 0 30px;
  241. }
  242. .h2History {
  243. font-size: 14px;
  244. }
  245. .linkCard {
  246. border: 2px solid darkblue;
  247. background-color: aqua;
  248. color: darkblue;
  249. border-radius: 15px;
  250. padding: 12px;
  251. margin-left: 30px;
  252. font-size: 20px;
  253. }
  254. .card div button {
  255. margin-left: 20px;
  256. border-radius: 15px;
  257. }
  258. .footer {
  259. padding-top: 20px;
  260. color: white;
  261. min-height: 80px;
  262. background-color: tomato;
  263. text-align: center;
  264. }
  265. .b-popup-content::-webkit-scrollbar{
  266. width: 0px;
  267. height: 0px;
  268. }
  269. #removePosition {
  270. width: 100px;
  271. }