questions.css 4.7 KB

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