App.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. * {
  2. padding: 0;
  3. margin: 0%;
  4. color: rgb(229, 229, 243);
  5. }
  6. .links {
  7. text-decoration: none;
  8. color: rgb(229, 229, 243);
  9. }
  10. .links:hover {
  11. color: rgb(229, 229, 243);
  12. }
  13. .header {
  14. position: fixed;
  15. width: 100%;
  16. top:0%;
  17. color: rgb(229, 229, 243);
  18. background-color: rgb(58, 58, 65);
  19. display: flex;
  20. justify-content: space-between;
  21. padding-top: 10px;
  22. height: 50px;
  23. }
  24. .header .standartMenu {
  25. width: 50%;
  26. list-style-type: none;
  27. display: flex;
  28. justify-content: space-around;
  29. }
  30. .mobileMenu {
  31. position: absolute;
  32. background-color: rgb(58, 58, 65);
  33. height: 10em;
  34. border-radius: 0 0% 10% 10%;
  35. align-items: center;
  36. list-style-type: none;
  37. font-size: 10px;
  38. justify-content: space-around;
  39. top: 50px;
  40. left: 0px;
  41. padding: 0%;
  42. right: 0%;
  43. z-index: 2;
  44. display: flex;
  45. flex-direction: row;
  46. }
  47. .tabletMenu {
  48. display: none;
  49. }
  50. .rightSide {
  51. width: 30%;
  52. display: flex;
  53. justify-content: space-around;
  54. }
  55. .rightSide div svg {
  56. margin-right: 2px;
  57. }
  58. .MainImg {
  59. background-image: url(./images/main.jpg);
  60. background-color: rgb(10, 10, 10);
  61. background-repeat: no-repeat;
  62. background-position: center;
  63. background-size: 100%;
  64. width: 100%;
  65. min-height: 45em;
  66. margin-top: 50px;
  67. padding-bottom: 100px;
  68. display: flex;
  69. }
  70. aside {
  71. width: 20%;
  72. }
  73. content {
  74. width: 80%;
  75. }
  76. .goodsWrapper {
  77. display: flex;
  78. align-items: center;
  79. flex-direction: column;
  80. }
  81. .goods {
  82. display: flex;
  83. flex-wrap: wrap;
  84. justify-content: space-around;
  85. width: 90%;
  86. border-radius: 10%;
  87. padding: 20px;
  88. }
  89. .catalog {
  90. list-style: none;
  91. padding: 3%;
  92. }
  93. .oneGood {
  94. position: relative;
  95. background-color: rgb(10, 10, 10);
  96. display: flex;
  97. width: 150px;
  98. flex-direction: column;
  99. font-size: 15px;
  100. align-items: center;
  101. margin: 5px;
  102. padding: 10px;
  103. border: 2px solid;
  104. border-color:rgb(229, 229, 243);
  105. border-radius: 20%;
  106. justify-content: space-between;
  107. }
  108. .oneGood h5 {
  109. font-size: 16px;
  110. height: 75px;
  111. }
  112. .About {
  113. }
  114. .footer {
  115. position: fixed;
  116. width: 100%;
  117. bottom:0%;
  118. color: rgb(229, 229, 243);
  119. background-color: rgb(58, 58, 65);
  120. display: flex;
  121. justify-content: space-between;
  122. padding-bottom: 10px;
  123. align-items: center;
  124. height: 50px;
  125. }
  126. .guarantee {
  127. padding: 0% 5px;
  128. }
  129. .contacts {
  130. width: 50%;
  131. display: flex;
  132. justify-content: space-around;
  133. }
  134. @media screen and (max-width: 900px) {
  135. .header {
  136. padding: 0%;
  137. }
  138. .header .standartMenu {
  139. display: none;
  140. }
  141. .tabletMenu {
  142. display: inline-block;
  143. }
  144. .rightSide {
  145. width: 60%;
  146. align-items: center;
  147. }
  148. .catalog {
  149. }
  150. .catalog a {
  151. font-size: 10px;
  152. }
  153. .MainImg {
  154. padding-top: 100px;
  155. /* height: 15em; */
  156. background-position: top;
  157. }
  158. .MainImg aside {
  159. width: 40%;
  160. }
  161. .MainImg content {
  162. width: 60%;
  163. }
  164. .goods {
  165. padding: 0%;
  166. background: none;
  167. }
  168. .oneGood {
  169. background-color: rgb(10, 10, 10);
  170. width: 100%;
  171. }
  172. .oneGood h5 {
  173. font-size: 10px;
  174. height: 25px;
  175. }
  176. .oneGood img {
  177. width: 80px;
  178. }
  179. .footer {
  180. font-size: 8px;
  181. }
  182. }