style.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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 img {
  75. width: 300px;
  76. height: 300px;
  77. }
  78. #productBlock a:hover {
  79. opacity: 0.8;
  80. }
  81. .card{
  82. display: flex;
  83. margin-bottom: 30px;
  84. }
  85. .card div{
  86. padding: 40px;
  87. border-bottom: 2px solid black;
  88. border-right: 2px solid black;
  89. border-top: 2px solid black;
  90. min-width: 1030px;
  91. }
  92. #flexBlock {
  93. display: flex;
  94. padding-top: 30px;
  95. }
  96. #textBlock {
  97. padding-left: 30px;
  98. }
  99. flexBlock img {
  100. height: 400px;
  101. width: 400px;
  102. }
  103. #h2text {
  104. padding-right: 30px;
  105. }
  106. .b-container{
  107. width:200px;
  108. height:150px;
  109. background-color: #ccc;
  110. margin:0px auto;
  111. padding:10px;
  112. font-size:30px;
  113. color: #fff;
  114. }
  115. .b-popup{
  116. width:100%;
  117. min-height:100%;
  118. background-color: rgba(0,0,0,0.5);
  119. overflow:hidden;
  120. position:fixed;
  121. top:0px;
  122. }
  123. .b-popup .b-popup-content{
  124. margin:40px auto 0px auto;
  125. width: 1000px;
  126. min-height: 500px;
  127. padding:10px;
  128. background-color: yellow;
  129. border-radius:5px;
  130. box-shadow: 0px 0px 10px #000;
  131. }
  132. .b-popup-content {
  133. padding: 300px;
  134. display: flex;
  135. flex-direction: column
  136. }
  137. #divToCart {
  138. align-items: center;
  139. padding: 30px;
  140. display: flex;
  141. width: 700px;
  142. }
  143. #divToCart img{
  144. max-width: 100px;
  145. max-height: 100px;
  146. }
  147. #divToCart img,
  148. #divToCart h2{
  149. margin-right: 30px;
  150. }
  151. #divToCart h2 {
  152. align-items: center;
  153. }
  154. .b-popup-content button {
  155. width: 30px;
  156. height: 30px;
  157. margin: 0;
  158. }
  159. #buttonCloseCartId {
  160. position: absolute;
  161. top: 70px;
  162. right: 420px;
  163. }
  164. #buttonDelete{
  165. width: 100px;
  166. position: absolute;
  167. top: 70px;
  168. right: 500px;
  169. }
  170. .b-poput-container-flex {
  171. justify-content: center;
  172. }
  173. .b-poput-container-flex input {
  174. margin-bottom: 30px;
  175. width: 300px;
  176. height: 40px;
  177. font-size: 20px;
  178. margin: 20px auto;
  179. text-align: center;
  180. }
  181. .b-poput-container-flex h2 {
  182. margin: 10px auto;
  183. }
  184. .b-poput-container-flex #buttonCloseCartId {
  185. bottom: 910px;
  186. }
  187. #regInput,
  188. #loginInputt {
  189. width: 150px;
  190. height: 50px;
  191. margin: 10px auto;
  192. }
  193. .addToCartButton {
  194. font-size: 14px;
  195. }
  196. #buttonPlus,
  197. #buttonMinus {
  198. margin-right: 10px;
  199. }
  200. #pCount {
  201. border-radius: 50%;
  202. background-color: red;
  203. width: 10px;
  204. height: 10px;
  205. font-size: 14px;
  206. }
  207. .footer{
  208. padding-top: 20px;
  209. color:white;
  210. min-height: 80px;
  211. background-color: tomato;
  212. text-align: center;
  213. }