ped.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. body {
  2. background-color: #FFEED4;
  3. font-family: 'Tac1', sans-serif;
  4. }
  5. .header {
  6. background-color: #F7AA27;
  7. color: white;
  8. padding: 15px 0;
  9. display: flex;
  10. justify-content: space-between;
  11. align-items: center;
  12. }
  13. .header-logo {
  14. margin-left: 20px;
  15. }
  16. .header-logo img {
  17. width: 100px;
  18. height: auto;
  19. }
  20. .header-info {
  21. display: flex;
  22. align-items: center;
  23. }
  24. .header-tech {
  25. font-size: 2em;
  26. margin-right: 10px; /* Минимальный отступ */
  27. }
  28. .header-center {
  29. font-family: 'Tac1', sans-serif;
  30. font-size: 1.2em;
  31. margin-right: 180px; /* Большой отступ */
  32. }
  33. .header-location, .header-phone {
  34. font-size: 1.2em; /* Увеличенный шрифт */
  35. margin-right: 20px; /* Отступ для телефона */
  36. }
  37. .header-nav {
  38. position: relative;
  39. margin-right: 100px;
  40. font-size: 1.2em
  41. }
  42. .header-nav button {
  43. background-color: transparent;
  44. border: none;
  45. padding: 10px 15px;
  46. color: white;
  47. font-size: 1em;
  48. cursor: pointer;
  49. }
  50. .header-nav ul {
  51. list-style: none;
  52. margin: 0;
  53. padding: 0;
  54. position: absolute;
  55. top: 100%;
  56. right: 0;
  57. background-color: rgba(255, 255, 255, 0.8); /* Прозрачный белый цвет */
  58. border-radius: 5px;
  59. display: none;
  60. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  61. padding: 10px;
  62. border: 1px solid #F7AA27;
  63. }
  64. .header-nav li {
  65. padding: 10px;
  66. border-bottom: 1px solid #F7AA27; /* Цвет разделителя */
  67. transition: background-color 0.3s ease; /* Добавляем плавный переход */
  68. }
  69. .header-nav li:last-child {
  70. border-bottom: none;
  71. }
  72. .header-nav li a {
  73. text-decoration: none;
  74. color: #F7AA27; /* Цвет текста */
  75. }
  76. .header-nav li:hover {
  77. background-color: rgba(247, 170, 39, 0.5); /* Прозрачно-рыжий цвет */
  78. }
  79. .header-nav li a:hover {
  80. color: white; /* Цвет текста при наведении */
  81. }
  82. .header-nav:hover ul {
  83. display: block;
  84. }
  85. .container {
  86. background-color: white;
  87. padding: 20px;
  88. margin: 20px auto;
  89. max-width: 960px;
  90. border-radius: 10px;
  91. display: flex;
  92. align-items: center;
  93. }
  94. .footer {
  95. background-color: #DBAD63;
  96. color: white;
  97. text-align: center;
  98. padding: 15px 0;
  99. }
  100. /* Стили для новых контейнеров */
  101. .video-container {
  102. width: 50%; /* Видео занимает половину ширины контейнера */
  103. margin-right: 20px;
  104. }
  105. .video-container iframe {
  106. width: 100%;
  107. height: 300px;
  108. border-radius: 10px;
  109. }
  110. .text-container {
  111. width: 50%; /* Текст занимает половину ширины контейнера */
  112. }
  113. .text-container h2 {
  114. font-size: 1.5em;
  115. margin-bottom: 10px;
  116. }
  117. .text-container p {
  118. font-size: 1em;
  119. line-height: 1.5;
  120. }
  121. .buttons-container {
  122. display: flex;
  123. justify-content: center;
  124. margin-bottom: 20px;
  125. }
  126. .buttons-container button {
  127. background-color: white;
  128. color: black;
  129. border: none;
  130. padding: 10px 20px;
  131. font-size: 1em;
  132. cursor: pointer;
  133. margin: 0 10px;
  134. border-radius: 5px;
  135. }
  136. .buttons-container button:hover {
  137. background-color: #F7AA27;
  138. color: white;
  139. }
  140. .loginBut {
  141. position: relative;
  142. margin-right: 100px;
  143. font-size: 1.2em;
  144. left: 150px;
  145. }
  146. .loginBut button {
  147. background-color: transparent;
  148. border: none;
  149. padding: 10px 15px;
  150. color: white;
  151. font-size: 1em;
  152. cursor: pointer;
  153. }