App — копия.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. .App {
  2. text-align: center;
  3. }
  4. .App-logo {
  5. height: 40vmin;
  6. pointer-events: none;
  7. }
  8. @media (prefers-reduced-motion: no-preference) {
  9. .App-logo {
  10. animation: App-logo-spin infinite 20s linear;
  11. }
  12. }
  13. .App-header {
  14. background-color: #282c34;
  15. min-height: 100vh;
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. justify-content: center;
  20. font-size: calc(10px + 2vmin);
  21. color: white;
  22. }
  23. .App-link {
  24. color: #61dafb;
  25. }
  26. @keyframes App-logo-spin {
  27. from {
  28. transform: rotate(0deg);
  29. }
  30. to {
  31. transform: rotate(360deg);
  32. }
  33. }
  34. body {
  35. margin: 0;
  36. }
  37. /*Всегда пишем:*/
  38. html {
  39. box-sizing: border-box;
  40. }
  41. /*Всегда пишем:*/
  42. *,
  43. *::before,
  44. *::after {
  45. box-sizing: inherit;
  46. }
  47. /*Всегда пишем:*/
  48. .wrapper {
  49. position: relative;
  50. width: 100%;
  51. overflow: hidden;
  52. min-height: 100vh;
  53. /*задавливание футера вниз*/
  54. display: flex;
  55. /*задавливание футера вниз*/
  56. flex-direction: column;
  57. /*задавливание футера вниз*/
  58. }
  59. /*Всегда пишем:*/
  60. .container {
  61. max-width: 1330px;
  62. /*компенсация паддингов по 15рх*/
  63. padding: 0 15px;
  64. margin: 0 auto;
  65. }
  66. /*Всегда пишем:*/
  67. img {
  68. max-width: 100%;
  69. height: auto;
  70. vertical-align: top;
  71. }
  72. /*Всегда пишем:*/
  73. ul {
  74. list-style: none;
  75. margin: 0;
  76. padding: 0;
  77. }
  78. a {
  79. text-decoration: none;
  80. }
  81. .section-skills {
  82. padding: 100px 0 70px;
  83. }
  84. .section-skills .row {
  85. display: flex;
  86. align-items: center;
  87. margin: 0 -15px;
  88. }
  89. .section-skills .col {
  90. width: 50%;
  91. padding: 0 15px;
  92. }
  93. .skill-holder .section-title {
  94. margin: 0 0 50px;
  95. font-size: 32px;
  96. line-height: 1.15;
  97. }
  98. .skill-list {
  99. max-width: 445px;
  100. width: 100%;
  101. }
  102. .skill-item {
  103. margin-bottom: 30px;
  104. }
  105. .skill-item:last-child {
  106. margin-bottom: 0;
  107. }
  108. .skill-title {
  109. font-size: 16px;
  110. line-height: 1.6;
  111. display: inline-block;
  112. margin-bottom: 20px;
  113. color: #727272;
  114. }
  115. .skill-loader {
  116. position: relative;
  117. height: 4px;
  118. background: #c4c4c4;
  119. }
  120. .skill-load {
  121. position: absolute;
  122. top: 0;
  123. bottom: 0;
  124. left: 0;
  125. background: #34547A;
  126. }
  127. .col-img {
  128. background-position: center;
  129. background-size: cover;
  130. padding-top: 81%;
  131. }
  132. .my-work{
  133. margin: auto;
  134. position: relative;
  135. background-color: lightgrey;
  136. }
  137. .my-work-text {
  138. margin: auto;
  139. text-align: center;
  140. max-width: 40%;
  141. font-size: 32px;
  142. }
  143. .my-work-video {
  144. position: relative;
  145. display: flex;
  146. flex-wrap: nowrap;
  147. }
  148. .video-main{
  149. position: relative;
  150. display: flex;
  151. padding-bottom: 100px;
  152. margin: auto;
  153. }
  154. .button-play{
  155. position: absolute;
  156. left: 48%;
  157. top: 38%;
  158. }
  159. .section-gallery {
  160. position: relative;
  161. max-width: 1330px;
  162. margin: auto;
  163. background-color: #727272;
  164. }
  165. .gallery-list {
  166. display: flex;
  167. flex-wrap: wrap;
  168. }
  169. .gallery-item {
  170. display: block;
  171. height: 100px;
  172. width: 25%;
  173. padding-top: 25%;
  174. background-size: cover;
  175. background-position: center;
  176. background-repeat: no-repeat;
  177. position: relative;
  178. }
  179. .gallery-item:before {
  180. content: '';
  181. position: auto;
  182. top: 0;
  183. right: 0;
  184. bottom: 0;
  185. left: 0;
  186. background: rgba(52, 84, 122, 0.8);
  187. }
  188. .gallery-item:after {
  189. content: '';
  190. height: 58px;
  191. width: 100px;
  192. background: url('img/eye.png');
  193. background-position: center;
  194. background-repeat: no-repeat;
  195. background-size: cover;
  196. position: absolute;
  197. top: 50%;
  198. left: 50%;
  199. transform: translate(-50%, -50%);
  200. }
  201. .gallery-item:before,
  202. .gallery-item:after {
  203. opacity: 0;
  204. visibility: hidden;
  205. }
  206. .gallery-item:hover:before,
  207. .gallery-item:hover:after {
  208. transition: opacity .3s ease-in-out;
  209. opacity: 1;
  210. visibility: visible;
  211. }
  212. .clients{
  213. position: relative;
  214. display: flex;
  215. flex-wrap: nowrap;
  216. max-width: 1330px;
  217. height: 40%;
  218. margin: auto;
  219. }
  220. .client-logo{
  221. max-width: 15%;
  222. justify-content: space-around;
  223. flex-direction: row;
  224. align-self: center;
  225. margin: auto;
  226. }