App.css 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634
  1. html {
  2. box-sizing: border-box;
  3. height: 100%;
  4. font-family: "Roboto Light", "Roboto Thin", sans-serif;
  5. font-size: 16px;
  6. line-height: 26px;
  7. color: #727272;
  8. }
  9. *,
  10. *:before,
  11. *:after {
  12. box-sizing: inherit;
  13. }
  14. li {
  15. list-style: none;
  16. }
  17. a {
  18. text-decoration: none;
  19. }
  20. img {
  21. max-width: 100%;
  22. display: inline-block;
  23. }
  24. .title {
  25. color: black;
  26. font-size: 32px;
  27. line-height:37px;
  28. text-align: center;
  29. }
  30. .btn {
  31. display: inline-block;
  32. text-transform: uppercase;
  33. color: white;
  34. background-color: #34547A;
  35. text-decoration: none;
  36. padding: 25px 40px;
  37. font-style: normal;
  38. font-weight: 400;
  39. font-size: 16px;
  40. line-height: 26px;
  41. letter-spacing: 0.1em;
  42. }
  43. .text {
  44. text-align: center;
  45. line-height: 1.6;
  46. }
  47. .page-wrapper {
  48. max-width: 100%;
  49. overflow: hidden;
  50. position: relative;
  51. }
  52. .wrapper {
  53. max-width: 1150px;
  54. padding: 100px 15px;
  55. margin: 0 auto;
  56. text-align: center;
  57. }
  58. /*---------------------Header---------------------*/
  59. .header {
  60. display: flex;
  61. position: absolute;
  62. width: 1200px;
  63. }
  64. .logo {
  65. margin-left: 70px;
  66. }
  67. .menu_box {
  68. display: flex;
  69. list-style: none;
  70. align-items: center;
  71. margin-left: 250px;
  72. margin-bottom: 100px;
  73. }
  74. .nav {
  75. margin-right: 1em;
  76. text-transform: uppercase;
  77. color: black;
  78. letter-spacing: 0.1em;
  79. font-size: 16px;
  80. }
  81. .nav:hover {
  82. color: #34547A;
  83. }
  84. /*---------------Hamburger-menu---------------*/
  85. #menu__toggle {
  86. opacity: 0;
  87. }
  88. #menu__toggle:checked ~ .menu__btn > span {
  89. transform: rotate(45deg);
  90. }
  91. #menu__toggle:checked ~ .menu__btn > span::before {
  92. top: 0;
  93. transform: rotate(0);
  94. }
  95. #menu__toggle:checked ~ .menu__btn > span::after {
  96. top: 0;
  97. transform: rotate(90deg);
  98. }
  99. #menu__toggle:checked ~ .menu_box {
  100. visibility: visible;
  101. left: 0;
  102. }
  103. /*---------------------Banner---------------------*/
  104. .container_banner {
  105. background-color: #EEEFF1;
  106. }
  107. .wrapper-banner {
  108. max-width: 1150px;
  109. padding: 50px 15px;
  110. margin: 0 auto;
  111. text-align: center;
  112. }
  113. .banner {
  114. display: flex;
  115. margin-top: 200px;
  116. }
  117. .banner-block {
  118. width: 50%;
  119. }
  120. .banner-img {
  121. padding-top:100px;
  122. }
  123. .banner-title,
  124. .banner-text {
  125. margin-bottom: 60px;
  126. text-align: left;
  127. }
  128. .banner-text {
  129. line-height: 1.6;
  130. }
  131. .banner-title {
  132. font-weight: 500;
  133. font-size: 48px;
  134. color: #000000;
  135. }
  136. /*---------------------About---------------------*/
  137. .container_about {
  138. background-color: #E5E5E538;
  139. width: 100%;
  140. }
  141. .about-block {
  142. margin: 0 250px;
  143. }
  144. /*---------------------Icon---------------------*/
  145. .container_icon {
  146. background-color: #34547A;;
  147. width: 100%;
  148. }
  149. .wrapper-icon {
  150. max-width: 1150px;
  151. padding: 100px 15px;
  152. margin: 0 auto;
  153. text-align: center;
  154. }
  155. .icon-project,
  156. .icon-block {
  157. display: flex;
  158. color: white;
  159. justify-content: space-around;
  160. }
  161. .icon-block {
  162. margin-right: 30px;
  163. }
  164. .icon-block-pic {
  165. margin-right: 20px;
  166. }
  167. /*---------------------Skills---------------------*/
  168. .container_skill {
  169. background-color: #E5E5E538;
  170. }
  171. .skill-block {
  172. display: flex;
  173. }
  174. .skill {
  175. width: 50%;
  176. padding-top: 30px;
  177. }
  178. .my-photo {
  179. width: 550px;
  180. margin: 30px;
  181. }
  182. .skill-list {
  183. max-width: 445px;
  184. }
  185. .skill-item,
  186. .skill-item {
  187. padding-top: 30px;
  188. }
  189. .skill-title {
  190. text-align: left;
  191. }
  192. .skill-load {
  193. position: relative;
  194. height: 4px;
  195. background: #C4C4C4;
  196. }
  197. .skill-progress {
  198. position: absolute;
  199. top: 0;
  200. bottom: 0;
  201. left: 0;
  202. background: #34547A;
  203. width: 75%;
  204. }
  205. .skill-text {
  206. text-align: left;
  207. }
  208. /*---------------------Video---------------------*/
  209. .container_video {
  210. background-color: #EEEFF1;
  211. }
  212. .video-text {
  213. margin: 0 250px 60px 250px;
  214. }
  215. .video-pic {
  216. display: flex;
  217. justify-content: center;
  218. align-items: center;
  219. }
  220. .play_button {
  221. position: absolute;
  222. text-decoration: none;
  223. }
  224. /*---------------------Gallery---------------------*/
  225. .wrapper_gallery {
  226. margin: 0 auto;
  227. text-align: center;
  228. max-width: 1150px;
  229. }
  230. .container_gallery,
  231. .container_microsoft {
  232. background-color: #E5E5E538;
  233. }
  234. .gallery-list {
  235. display: flex;
  236. flex-wrap: wrap;
  237. }
  238. .gallery-img-sticky {
  239. display: inline-block;
  240. background-position: center;
  241. background-repeat: no-repeat;
  242. width: 25%;
  243. position: relative;
  244. line-height: 0;
  245. }
  246. .gallery-img {
  247. display: inline-block;
  248. background-position: center;
  249. background-repeat: no-repeat;
  250. width: 25%;
  251. position: relative;
  252. line-height: 0;
  253. }
  254. .view {
  255. position: absolute;
  256. top: 0;
  257. left: 0;
  258. width: 100%;
  259. height: 100%;
  260. overflow-y: auto;
  261. background-color: rgba(15, 33, 44, .6);
  262. display: flex;
  263. padding: 15px;
  264. align-items: center;
  265. justify-content: center;
  266. text-align: center;
  267. opacity: 0;
  268. transition: opacity .3s ease;
  269. line-height: 0;
  270. }
  271. .gallery-img:hover {
  272. opacity: 1;
  273. }
  274. .view:hover {
  275. opacity: 1;
  276. }
  277. /*-----------------Microsoft--------------------*/
  278. .microsoft-block {
  279. display: flex;
  280. justify-content: center;
  281. }
  282. .microsoft-img {
  283. width: 80%;
  284. }
  285. .wrapper-microsoft {
  286. max-width: 1150px;
  287. padding: 70px 15px 100px 15px;
  288. margin: 0 auto;
  289. text-align: center;
  290. }
  291. .microsoft-img {
  292. margin: 0 10px;
  293. }
  294. /*--------------------Form---------------------*/
  295. .container_form {
  296. background-color: #EEEFF1;
  297. align-items: center;
  298. justify-content: center;
  299. }
  300. .wrapper_form {
  301. max-width: 1150px;
  302. padding: 100px 15px;
  303. margin: 0 auto;
  304. display: flex;
  305. align-items: center;
  306. justify-content: center;
  307. }
  308. .form-block {
  309. text-align: center;
  310. max-width: 50%;
  311. }
  312. .block-name {
  313. display: flex;
  314. }
  315. input {
  316. width: 50%;
  317. height: 60px;
  318. }
  319. .email {
  320. margin-left: 40px;
  321. }
  322. textarea {
  323. margin-bottom: 50px;
  324. width: 100%;
  325. height: 100px;
  326. }
  327. /*--------------------Footer---------------------*/
  328. .footer-block {
  329. display: flex;
  330. justify-content: space-between;
  331. align-items: center;
  332. }
  333. .footer-wrapper {
  334. max-width: 1150px;
  335. padding: 50px 15px;
  336. margin: 0 auto;
  337. }
  338. .footer {
  339. background-color: #34547A;
  340. color: white;
  341. }
  342. @media (max-width: 1000px) {
  343. .menu_box {
  344. display: block;
  345. position: fixed;
  346. top: 0;
  347. left: -100%;
  348. width: 100%;
  349. height: 100%;
  350. margin: 0;
  351. padding: 100px 50px;
  352. list-style: none;
  353. text-align: center;
  354. background-color: #EEEFF1;
  355. transition: all 0.4s ease-in-out;
  356. line-height: 2;
  357. }
  358. .menu__btn {
  359. display: flex;
  360. align-items: center;
  361. position: fixed;
  362. top: 20px;
  363. left: 20px;
  364. width: 26px;
  365. height: 26px;
  366. cursor: pointer;
  367. z-index: 1;
  368. }
  369. .menu__btn > span,
  370. .menu__btn > span::before,
  371. .menu__btn > span::after {
  372. display: block;
  373. position: absolute;
  374. width: 100%;
  375. height: 2px;
  376. background-color: #616161;
  377. }
  378. .menu__btn > span::before {
  379. content: '';
  380. top: -8px;
  381. }
  382. .menu__btn > span::after {
  383. content: '';
  384. top: 8px;
  385. }
  386. .banner {
  387. display: flex;
  388. margin-top: 50px;
  389. }
  390. .logo {
  391. margin-left: 200px;
  392. }
  393. .icon-block:nth-child(6)
  394. {
  395. display: none;
  396. }
  397. }
  398. @media (max-width: 850px) {
  399. .wrapper {
  400. padding: 70px 15px;
  401. }
  402. .title {
  403. font-size: 28px;
  404. }
  405. .about-block {
  406. margin: 0 100px;
  407. }
  408. .banner-title {
  409. font-size: 36px;
  410. margin-bottom: 20px;
  411. }
  412. .banner-title,
  413. .banner-text {
  414. margin-bottom: 35px;
  415. }
  416. .banner-img {
  417. padding-top:70px;
  418. }
  419. .icon-block:nth-child(5) {
  420. display: none;
  421. }
  422. .icon-block {
  423. margin-right: 40px;
  424. }
  425. .icon-block-pic {
  426. margin-right: 20px;
  427. }
  428. .video-text {
  429. margin: 0 200px 40px 200px;
  430. }
  431. .wrapper-microsoft {
  432. padding: 70px 15px 50px 15px;
  433. }
  434. .wrapper_form {
  435. padding: 50px 15px;
  436. }
  437. .footer-wrapper {
  438. padding: 30px 15px;
  439. }
  440. }
  441. @media (max-width: 600px) {
  442. .btn {
  443. padding: 18px 30px;
  444. }
  445. .banner {
  446. display: block;
  447. }
  448. .banner-block {
  449. width: 100%;
  450. }
  451. .banner-title,
  452. .banner-text {
  453. text-align: center;
  454. }
  455. .icon-project {
  456. display: flex;
  457. flex-wrap: wrap;
  458. }
  459. .skill {
  460. padding-top: 0;
  461. }
  462. .my-photo {
  463. width: 450px;
  464. }
  465. .skill-item,
  466. .skill-item {
  467. padding-top: 10px;
  468. }
  469. .video-text {
  470. margin: 0 100px 60px 100px;
  471. }
  472. .play_button {
  473. width: 10%;
  474. }
  475. .view {
  476. padding: 30px;
  477. }
  478. .wrapper-microsoft {
  479. padding: 40px 15px 50px 15px;
  480. }
  481. .microsoft-img:nth-child(4) {
  482. display: none;
  483. }
  484. .wrapper_form {
  485. padding: 50px 15px;
  486. }
  487. .email {
  488. margin-left: 30px;
  489. }
  490. .form-block {
  491. max-width: 90%;
  492. }
  493. .footer-pic {
  494. max-width: 30%;
  495. }
  496. }
  497. @media (max-width: 350px) {
  498. .btn {
  499. padding: 15px 25px;
  500. font-size: 14px;
  501. }
  502. .wrapper {
  503. padding: 40px 15px;
  504. }
  505. .title {
  506. font-size: 24px;
  507. }
  508. .about-block {
  509. margin: 0 40px;
  510. }
  511. .icon-block:nth-child(3),
  512. .icon-block:nth-child(4)
  513. {
  514. display: none;
  515. }
  516. .skill-block {
  517. display: block;
  518. width: 100%;
  519. }
  520. .skill {
  521. width: 100%;
  522. }
  523. .my-photo {
  524. max-width: 100%;
  525. }
  526. .skill-list {
  527. max-width: 445px;
  528. }
  529. .skill-item,
  530. .skill-item {
  531. padding-top: 0;
  532. }
  533. .my-photo {
  534. max-width: 90%;
  535. }
  536. .skill-item,
  537. .skill-item {
  538. padding-top: 10px;
  539. }
  540. .video-text {
  541. margin: 0 50px 60px 50px;
  542. }
  543. .wrapper_form {
  544. padding: 30px 15px;
  545. }
  546. .block-name {
  547. display: flex;
  548. flex-wrap: wrap;
  549. }
  550. .email,
  551. .name {
  552. margin-left: 0px;
  553. width: 100%;
  554. margin-bottom: 10px;
  555. }
  556. }