style.css 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. main {
  2. display: flex;
  3. justify-content: center;
  4. flex-grow: 1;
  5. }
  6. .wrapper {
  7. width: 100%;
  8. overflow: hidden;
  9. display: flex;
  10. flex-direction: column;
  11. min-height: 100vh;
  12. }
  13. .content {
  14. display: flex;
  15. order: 2;
  16. }
  17. .container {
  18. max-width: 960px;
  19. margin: 0 auto;
  20. padding: 0 15px;
  21. }
  22. .content__wrapper {
  23. margin-top: 30px;
  24. }
  25. .content__text {
  26. padding: 0 40px;
  27. }
  28. .content__wrapper h1 {
  29. text-transform: uppercase;
  30. }
  31. .menu {
  32. background-color: rgb(226, 188, 21);
  33. display: flex;
  34. justify-content: space-between;
  35. align-items: center;
  36. padding: 15px 50px;
  37. }
  38. .menu__img {
  39. width: 190px;
  40. position: relative;
  41. z-index: 9;
  42. }
  43. .burger,
  44. #opener {
  45. display: none;
  46. }
  47. .menu__list ul {
  48. display: flex;
  49. font-size: 15px;
  50. }
  51. .menu__list li {
  52. padding-left: 10px;
  53. }
  54. .menu__list a {
  55. font-size: 25px;
  56. color: black;
  57. }
  58. .menu__list a {
  59. transition: all 0.5s;
  60. }
  61. .menu__list a:hover {
  62. color: rgb(34, 132, 149);
  63. }
  64. .box {
  65. display: flex;
  66. text-align: center;
  67. }
  68. .content__list {
  69. display: flex;
  70. flex-wrap: wrap;
  71. margin: 0;
  72. padding: 0;
  73. width: 100%;
  74. align-items: stretch;
  75. }
  76. .content__item {
  77. width: calc(100% / 3);
  78. display: flex;
  79. margin-bottom: 15px;
  80. justify-content: center;
  81. }
  82. .item__box {
  83. border: 2px solid gray;
  84. border-radius: 30px;
  85. display: flex;
  86. flex-direction: column;
  87. align-items: center;
  88. padding: 15px 10px;
  89. transition: all 0.5s;
  90. }
  91. .item__box:hover {
  92. box-shadow: 0px 5px 10px 2px rgb(34 60 80 / 31%);
  93. border: 2px solid transparent;
  94. }
  95. .item__img img {
  96. height: 80px;
  97. width: 80px;
  98. border-radius: 50%;
  99. border: 10px solid rgb(167, 167, 128);
  100. }
  101. .item__text {
  102. flex-grow: 1;
  103. width: 250px;
  104. }
  105. .item__btn {
  106. background-color: rgb(87, 54, 116);
  107. color: white;
  108. padding: 5px 20px;
  109. border-radius: 30px;
  110. font-weight: bold;
  111. transition: all 0.7s;
  112. }
  113. .item__btn:hover {
  114. box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  115. transform: scale(1.2);
  116. background-color: rgb(182, 158, 204);
  117. color: black;
  118. }
  119. .aside__first,
  120. .aside__second {
  121. width: 210px;
  122. height: auto;
  123. font-weight: bold;
  124. }
  125. .aside__first {
  126. background-color: rgb(235, 111, 208);
  127. order: 1;
  128. }
  129. .aside__second {
  130. background-color: rgb(111, 189, 235);
  131. order: 3;
  132. }
  133. .footer {
  134. background-color: cadetblue;
  135. padding: 15px 0;
  136. text-align: center;
  137. width: 100%;
  138. font-weight: bold;
  139. }
  140. .holder__wrapper {
  141. display: flex;
  142. justify-content: center;
  143. margin: 35px auto 50px;
  144. }
  145. .holder {
  146. flex-basis: 400px;
  147. height: 100px;
  148. border-radius: 20px 20px 0 0;
  149. overflow: hidden;
  150. border: 2px solid black;
  151. display: flex;
  152. flex-wrap: wrap;
  153. }
  154. .item {
  155. flex-basis: 100px;
  156. flex-grow: 1;
  157. display: flex;
  158. justify-content: center;
  159. align-items: center;
  160. }
  161. .item__one {
  162. background-color: coral;
  163. order: 1;
  164. flex-basis: 50%;
  165. }
  166. .item__two {
  167. background-color: rgb(164, 164, 236);
  168. order: 4;
  169. }
  170. .item__three {
  171. background-color: rgb(205, 80, 255);
  172. order: 3;
  173. }
  174. .item__four {
  175. background-color: rgb(11, 105, 11);
  176. order: 5;
  177. }
  178. .item__five {
  179. background-color: orange;
  180. order: 2;
  181. flex-basis: 50%;
  182. }
  183. @media (max-width: 1280px) {
  184. .menu__list a {
  185. font-size: 20px;
  186. }
  187. .content__item {
  188. width: calc(100% / 2);
  189. }
  190. }
  191. @media (max-width: 855px) {
  192. .menu__nav {
  193. display: flex;
  194. justify-content: flex-end;
  195. flex-grow: 1;
  196. }
  197. .menu__img {
  198. width: 150px;
  199. }
  200. .burger {
  201. position: relative;
  202. display: block;
  203. width: 30px;
  204. height: 20px;
  205. font-size: 0;
  206. }
  207. .burger::before,
  208. .burger span,
  209. .burger::after {
  210. position: absolute;
  211. content: "";
  212. display: block;
  213. height: 2px;
  214. width: 35px;
  215. background-color: black;
  216. left: 50%;
  217. transform: translateX(-50%);
  218. transition: all .8s;
  219. }
  220. .burger::before {
  221. top: 0;
  222. }
  223. .burger span {
  224. top: 50%;
  225. margin-top: -1px;
  226. transition: opacity .5s .5s;
  227. }
  228. .menu__list ul {
  229. display: flex;
  230. flex-direction: column;
  231. align-items: center;
  232. height: 100vh;
  233. position: absolute;
  234. left: -280px;
  235. top: 0;
  236. width: 280px;
  237. background-color: rgb(226, 188, 21);
  238. padding: 100px 15px 60px;
  239. transition: left .8s;
  240. }
  241. .menu__list li {
  242. padding: 0 0 10px;
  243. font-size: 30px;
  244. transition: all .5s;
  245. }
  246. .menu__list li:hover {
  247. transform: scale(1.2);
  248. }
  249. .menu__list a {
  250. font-size: 30px;
  251. }
  252. #opener:checked ~ ul {
  253. left: 0;
  254. }
  255. #opener:checked ~ .burger::before {
  256. top: 50%;
  257. transform: translate(-50%, -50%) rotate(-45deg);
  258. }
  259. #opener:checked ~ .burger span {
  260. opacity: 0;
  261. transition: opacity .5s;
  262. }
  263. #opener:checked ~ .burger::after {
  264. top: 50%;
  265. transform: translate(-50%, -50%) rotate(45deg);
  266. }
  267. .burger::after {
  268. top: calc(100% - 2px);
  269. }
  270. .content__wrapper h1 {
  271. font-size: 28px;
  272. }
  273. .content__item {
  274. width: calc(100% / 1);
  275. }
  276. .box {
  277. display: block;
  278. }
  279. .aside__first,
  280. .aside__second {
  281. width: 50%;
  282. float: left;
  283. }
  284. }
  285. @media (max-width: 500px) {
  286. .menu {
  287. padding: 15px 20px;
  288. }
  289. .menu__img {
  290. width: 125px;
  291. }
  292. .holder__wrapper {
  293. margin: 35px 15px 50px;
  294. }
  295. .holder {
  296. flex-basis: 280px;
  297. }
  298. .item__two,
  299. .item__three,
  300. .item__four {
  301. flex-basis: 33%;
  302. }
  303. }
  304. @media (max-width: 380px) {
  305. .menu__img {
  306. width: 100px;
  307. }
  308. .burger::before,
  309. .burger span,
  310. .burger::after {
  311. width: 25px;
  312. }
  313. .content__wrapper h1 {
  314. font-size: 25px;
  315. }
  316. .aside__first,
  317. .aside__second {
  318. width: 100%;
  319. float: none;
  320. padding: 5px;
  321. }
  322. .item__img img {
  323. height: 70px;
  324. width: 70px;
  325. border: 8px solid rgb(167, 167, 128);
  326. }
  327. .item__paragraph {
  328. font-size: 15px;
  329. }
  330. .item__text {
  331. width: 220px;
  332. }
  333. }
  334. @media (max-width: 300px) {
  335. .item__text {
  336. width: 180px;
  337. }
  338. }