style.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. /* Andrey Shevchenko. FEA-23. Home work 5 */
  2. * {
  3. box-sizing: border-box;
  4. }
  5. body {
  6. font-family: 'Roboto', sans-serif;
  7. background-color: rgb(0, 0, 0);
  8. padding: 0px;
  9. margin: 0;
  10. }
  11. .headerclass {
  12. position: absolute;
  13. left: 0;
  14. top: 0;
  15. width: 100vw;
  16. padding: 62px;
  17. display: flex;
  18. flex-direction: row;
  19. flex-wrap: nowrap;
  20. align-items: center;
  21. justify-content: space-between;
  22. color: #fff;
  23. font-size: 14px;
  24. font-weight: 500;
  25. z-index: 3;
  26. }
  27. .headerclass > :nth-child(-n + 2) {
  28. margin-right: 20px;
  29. }
  30. .headerclass a {
  31. color: #fff;
  32. text-decoration: none;
  33. }
  34. .headerclass a:hover {
  35. text-decoration: underline;
  36. }
  37. .navclass {
  38. color: #fff;
  39. display: flex;
  40. flex-direction: row;
  41. flex-wrap: nowrap;
  42. justify-content: space-between;
  43. min-width: 400px;
  44. max-width: 550px;
  45. flex-grow: 1;
  46. margin-right: -20px;
  47. }
  48. .navclass > :last-child {
  49. color: rgba(255, 202, 0, 1);
  50. width: 120px;
  51. }
  52. .heademail {
  53. font-size: 16px;
  54. }
  55. .emeilmenu {
  56. display: flex;
  57. justify-content: space-between;
  58. max-width: 420px;
  59. flex-grow: 1;
  60. }
  61. .headmenu {
  62. display: flex;
  63. flex-direction: row;
  64. flex-wrap: nowrap;
  65. align-items: center;
  66. margin-left: 25px;
  67. }
  68. .poloski {
  69. width: 50px;
  70. height: 12px;
  71. border-top: #fff solid 1px;
  72. border-bottom: #fff solid 1px;
  73. margin-left: 25px;
  74. }
  75. /* ---------------MAIN-------------- */
  76. .all_window {
  77. width: 100vw;
  78. height: 100vh;
  79. display: flex;
  80. justify-content: center;
  81. align-items: center;
  82. }
  83. .video {
  84. position: absolute;
  85. left: 0px;
  86. top: 0px;
  87. width: 100vw;
  88. height: 100vh;
  89. z-index: 1;
  90. }
  91. .center_blok {
  92. max-width: 960px;
  93. z-index: 2;
  94. }
  95. .welcome {
  96. margin-bottom: 23px;
  97. }
  98. .welcome__svg {
  99. margin-right: 9px;
  100. }
  101. .welcome__text {
  102. font-weight: 300;
  103. font-size: 18px;
  104. line-height: 21px;
  105. color: rgb(255, 255, 255, 1);
  106. }
  107. .center_blok__title {
  108. font-weight: 700;
  109. font-size: 64px;
  110. line-height: 75px;
  111. color: #ffffff;
  112. max-width: 806px;
  113. margin-bottom: 100px;
  114. }
  115. .center_blok__discuss {
  116. position: relative;
  117. width: 240px;
  118. height: 68px;
  119. background-color: rgb(255, 202, 0, 1);
  120. display: flex;
  121. align-items: center;
  122. justify-content: center;
  123. overflow: hidden;
  124. }
  125. .center_blok__discuss:hover .center_blok__discuss__text {
  126. color: rgb(255, 202, 0, 1);
  127. transition: all 1s linear;
  128. }
  129. .center_blok__discuss:hover .center_blok__discuss__tochka {
  130. transition: all 1s linear;
  131. box-shadow: 0 0px 0 180px rgb(32, 32, 32, 1);
  132. right: 150px;
  133. }
  134. .center_blok__discuss__text {
  135. position: absolute;
  136. left: 30px;
  137. font-weight: 500;
  138. font-size: 14px;
  139. color: #202020;
  140. z-index: 10;
  141. transition: all 0.4s linear;
  142. }
  143. /* .center_blok__discuss__text::after {
  144. content: '';
  145. color: #fff;
  146. width: 8px;
  147. height: 8px;
  148. border-radius: 50%;
  149. background-color: rgb(32, 32, 32);
  150. margin-left: 20px;
  151. } */
  152. .center_blok__discuss__tochka {
  153. position: absolute;
  154. right: 30px;
  155. width: 8px;
  156. height: 8px;
  157. border-radius: 50%;
  158. background-color: rgb(32, 32, 32);
  159. margin-left: 67px;
  160. z-index: 9;
  161. box-shadow: 0 0px 0 0px rgb(32, 32, 32, 1);
  162. transition: all 0.4s linear;
  163. }
  164. /* -------BOTTOM----------- */
  165. .low_left_scroll {
  166. display: flex;
  167. justify-content: center;
  168. align-items: center;
  169. position: absolute;
  170. left: 60px;
  171. bottom: 111px;
  172. color: rgb(126, 126, 126);
  173. font-size: 14px;
  174. line-height: 20px;
  175. transform: rotate(-90deg);
  176. z-index: 3;
  177. }
  178. .low_left_scroll__arrow {
  179. transform: rotate(90deg);
  180. margin-right: 35px;
  181. }
  182. .chatbutton {
  183. position: absolute;
  184. right: 60px;
  185. bottom: 109px;
  186. width: 76px;
  187. height: 76px;
  188. background-color: rgb(255, 202, 0);
  189. border-radius: 50%;
  190. display: flex;
  191. justify-content: center;
  192. align-items: center;
  193. box-shadow: none;
  194. transition: all 0.2s linear;
  195. z-index: 3;
  196. }
  197. .chatbutton:hover {
  198. box-shadow: 0 0px 0 15px rgb(255, 202, 0, 0.2);
  199. }