team.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. @import url(../fonts/font.css);
  2. .car-cards img {
  3. width: 580px;
  4. height: 400px;
  5. }
  6. .series.centered-button {
  7. text-align: center;
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. top: 200px;
  12. }
  13. .series.centered-button h2 {
  14. margin: 0;
  15. }
  16. .close-button {
  17. position: absolute;
  18. top: 5px;
  19. right: 0;
  20. background-color: rgb(73, 73, 73, 0);
  21. padding: 10px;
  22. }
  23. .popup {
  24. display: none;
  25. position: fixed;
  26. z-index: 1;
  27. left: 0;
  28. top: 0;
  29. width: 100%;
  30. height: 100%;
  31. overflow: auto;
  32. background-color: rgba(0, 0, 0, 0.4);
  33. }
  34. .popup-content {
  35. background-color: rgb(73, 73, 73, 0.5);
  36. margin: 15% auto;
  37. padding: 20px;
  38. border: 2px solid #000000;
  39. box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  40. width: 30%;
  41. text-align: center;
  42. color: #000000;
  43. position: relative; /* Add this */
  44. }
  45. .close {
  46. float: right;
  47. font-size: 28px;
  48. font-weight: bold;
  49. color: #000000;
  50. }
  51. .close:hover,
  52. .close:focus {
  53. color: black;
  54. text-decoration: none;
  55. cursor: pointer;
  56. }
  57. body {
  58. background-image: url('/assets/imgs/fotka.jpg');
  59. background-size: cover; /* Масштабирование фонового изображения для заполнения всей области*/
  60. text-align: center; /* Центрирование текста по центру*/
  61. font-family: Arial, sans-serif; /* Установка шрифта для текста*/
  62. }
  63. .big_con {
  64. width: 1800px;
  65. margin: 0 auto;
  66. }
  67. .logo {
  68. display: flex;
  69. justify-content: space-between;
  70. align-items: center;
  71. }
  72. .requisites {
  73. display: flex;
  74. justify-content: space-between;
  75. align-items: center;
  76. color: white;
  77. }
  78. .requisites .p18 {
  79. color: #C78E66;
  80. cursor: pointer;
  81. }
  82. .requisites img {
  83. padding-right: 16px;
  84. }
  85. .requisites .line {
  86. margin: 0 70px;
  87. }
  88. .opacity {
  89. position: absolute; /* Кнопка теперь в абсолютном позиционировании */
  90. top: 10px; /* Отступ от верхнего края */
  91. right: 20px;
  92. background: none;
  93. border: none;
  94. cursor: pointer;
  95. width: 310px;
  96. height: 40px;
  97. display: flex;
  98. justify-content: space-around;
  99. align-items: center;
  100. border: 1px solid white;
  101. background-color: rgba(255, 255, 255, 0);
  102. transition: all ease 0.3s;
  103. cursor: pointer;
  104. }
  105. .opacity:hover {
  106. background-color: #C78E66;
  107. border: 1px solid #C78E66;
  108. }
  109. .arrow svg {
  110. width: 9px;
  111. display: flex;
  112. justify-content: center;
  113. transition: all ease 0.3s;
  114. }
  115. .opacity:hover svg path {
  116. stroke: white;
  117. }
  118. .line {
  119. border: 1px solid #C78E66;
  120. height: 30px;
  121. margin: 0 20px;
  122. }
  123. .p14 {
  124. font-family: 'Tac', sans-serif;
  125. font-size: clamp(0.7rem, 0.35rem + 0.47vw, 0.875rem);
  126. font-weight: 400;
  127. color: white;
  128. }
  129. .orange:hover .p14{
  130. color: #C78E66;
  131. }
  132. .p16 {
  133. font-size: clamp(0.8rem, 0.4rem + 0.53vw, 1rem);
  134. font-weight: 400;
  135. color: white;
  136. }
  137. .requisites {
  138. display: flex;
  139. justify-content: space-between;
  140. align-items: center;
  141. color: white;
  142. }
  143. .opacity {
  144. position: absolute; /* Кнопка теперь в абсолютном позиционировании */
  145. top: 10px; /* Отступ от верхнего края */
  146. right: 20px;
  147. background: none;
  148. border: none;
  149. cursor: pointer;
  150. width: 310px;
  151. height: 40px;
  152. display: flex;
  153. justify-content: space-around;
  154. align-items: center;
  155. border: 1px solid white;
  156. background-color: rgba(255, 255, 255, 0);
  157. transition: all ease 0.3s;
  158. cursor: pointer;
  159. }
  160. .p18 {
  161. font-size: clamp(1rem, 0.75rem + 0.33vw, 1.125rem);
  162. font-weight: 700;
  163. color: white;
  164. }
  165. .opacity:hover {
  166. background-color: #C78E66;
  167. border: 1px solid #C78E66;
  168. }
  169. .arrow svg {
  170. width: 9px;
  171. display: flex;
  172. justify-content: center;
  173. transition: all ease 0.3s;
  174. }
  175. .opacity:hover svg path {
  176. stroke: white;
  177. }
  178. .background {
  179. position: fixed;
  180. top: 0;
  181. left: 0;
  182. width: 100%;
  183. height: 100%;
  184. z-index: -1;
  185. background-size: cover;
  186. background-position: center;
  187. }
  188. .team-container {
  189. display: flex; /* Размещение блоков в ряд */
  190. flex-wrap: wrap; /* Перенос блоков на новую строку, если не хватает места */
  191. justify-content: center; /* Центрирование по горизонтали */
  192. gap: 20px; /* Отступы между блоками */
  193. }
  194. .back_img {
  195. width: 100%;
  196. height: 100%;
  197. object-fit: cover;
  198. }
  199. .back-to-top {
  200. position: fixed;
  201. bottom: 20px;
  202. left: 50%;
  203. transform: translateX(-50%);
  204. display: none; /* Сначала скрываем кнопку */
  205. }
  206. .back-to-top button {
  207. background-color: #1a1a1a;
  208. color: white;
  209. padding: 10px 20px;
  210. border: none;
  211. border-radius: 5px;
  212. cursor: pointer;
  213. }
  214. .back-to-top button:hover {
  215. background-color: #1a1a1a;
  216. }
  217. /* Добавьте стиль для скрытия кнопки, когда страница прокручена меньше, чем на 100 пикселей */
  218. .back-to-top {
  219. display: none;
  220. }
  221. .back-to-top.show {
  222. display: block;
  223. }
  224. .content {
  225. position: relative;
  226. z-index: 1;
  227. color: rgb(255, 255, 255);
  228. margin-top: 100px;
  229. }
  230. .overlay {
  231. position: absolute;
  232. top: 0;
  233. left: 0;
  234. width: 100%;
  235. height: 100%;
  236. background-color: rgba(0, 0, 0, 0.5);
  237. }
  238. .logo {
  239. /* Дублирующие стили для элемента с классом 'logo' */
  240. position: absolute;
  241. top: 10px;
  242. left: 10px;
  243. }
  244. .car-cards {
  245. display: flex;
  246. flex-wrap: wrap;
  247. justify-content: center;
  248. }
  249. .car-card {
  250. /* Стили для элементов с классом 'car-card' */
  251. position: relative;
  252. margin: 10px;
  253. width: calc(50% - 0px);
  254. overflow: hidden; /* Скрытие содержимого, выходящего за границы */
  255. transition: transform 0.3s; /* Плавное изменение свойства трансформации за 0.3 секунды */
  256. background: white;
  257. border-radius: 10px;
  258. box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  259. padding: 10px;
  260. }
  261. .car-card:hover {
  262. /* Стили для наведения на элемент с классом 'car-card' */
  263. transform: scale(1.1); /* Увеличение масштаба при наведении */
  264. }
  265. .car-card h2, .car-card p {
  266. /* Стили для заголовков и параграфов внутри элемента 'car-card' */
  267. color: black;
  268. text-align: center;
  269. margin: 5px 0;
  270. font-size: 16px;
  271. }
  272. .car-card img {
  273. width: 100%;
  274. height: 150px; /* adjust the height to your desired value */
  275. object-fit: cover;
  276. }
  277. .car-info {
  278. /* Стили для информации об автомобиле */
  279. background-color: rgba(255, 255, 255, 0.8); /* Цвет фона с прозрачностью */
  280. position: absolute; /* Абсолютное позиционирование */
  281. bottom: 0; /* Расположение внизу */
  282. width: 100%; /* Ширина 100% */
  283. text-align: center; /* Выравнивание по центру */
  284. padding: 10px; /* Внутренние отступы 10px */
  285. }
  286. .availability {
  287. /* Стили для информации о доступности автомобиля */
  288. display: none; /* Начальное скрытие элемента */
  289. position: absolute; /* Абсолютное позиционирование */
  290. bottom: 10px; /* Расположение снизу 10px */
  291. left: 50%; /* Расположение по центру по горизонтали */
  292. transform: translateX(-50%); /* Центрирование по горизонтали */
  293. background-color: rgba(0, 0, 0, 0.7); /* Цвет фона с прозрачностью */
  294. color: white; /* Цвет текста */
  295. padding: 5px 10px; /* Внутренние отступы 5px сверху и снизу, 10px слева и справа */
  296. border-radius: 5px; /* Скругление углов 5px */
  297. }
  298. .car-card:hover .availability {
  299. /* Отображение информации о доступности при наведении на элемент 'car-card' */
  300. display: block; /* Показ элемента */
  301. }
  302. @media (max-width: 768px) {
  303. .car-card {
  304. width: 100%;
  305. }
  306. }
  307. h1.in-stock { /* Создаем новый стиль с классом "in-stock" */
  308. font-size: 1.2em; /* Уменьшаем размер шрифта */
  309. padding: 10px; /* Добавляем отступы для рамки */
  310. border: 1px solid #ccc; /* Добавляем границу */
  311. background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный черный фон */
  312. color: white; /* Белый цвет текста */
  313. text-align: center; /* Выравнивание текста по центру */
  314. border-radius: 5px; /* Скругленные углы рамки */
  315. }
  316. h2.in-stock { /* Создаем новый стиль с классом "in-stock" */
  317. font-size: 4.0em;
  318. padding: 10px; /* Добавляем отступы для рамки */
  319. border: 1px solid #ccc; /* Добавляем границу */
  320. background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный черный фон */
  321. color: white; /* Белый цвет текста */
  322. text-align: center; /* Выравнивание текста по центру */
  323. border-radius: 5px; /* Скругленные углы рамки */
  324. }
  325. .centered-button button { /* Стили для кнопки */
  326. font-size: 1.2em; /* Уменьшаем размер шрифта */
  327. padding: 10px; /* Добавляем отступы для рамки */
  328. border: 1px solid #ccc; /* Добавляем границу */
  329. background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный черный фон */
  330. color: white; /* Белый цвет текста */
  331. text-align: center; /* Выравнивание текста по центру */
  332. border-radius: 5px; /* Скругленные углы рамки */
  333. }
  334. .content2 {
  335. position: relative;
  336. z-index: 1;
  337. display: flex;
  338. justify-content: center;
  339. align-items: center;
  340. height: 100vh; /* Высота контента равна высоте viewport */
  341. position: relative;
  342. z-index: 1;
  343. display: flex;
  344. justify-content: center;
  345. align-items: center;
  346. height: 100vh
  347. }
  348. header {
  349. display: flex;
  350. justify-content: space-between;
  351. align-items: center;
  352. padding: 33px 0;
  353. }
  354. .cl {
  355. margin: 0 auto;
  356. background-color: #22242B;
  357. }