about.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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. .creator-info {
  95. margin-left: 20px;
  96. }
  97. .creator-info h2 {
  98. font-size: 1.5em;
  99. margin-bottom: 10px;
  100. }
  101. .creator-info p {
  102. font-size: 1em;
  103. line-height: 1.5;
  104. margin-bottom: 5px;
  105. }
  106. .creator-image {
  107. width: 200px;
  108. height: 300px;
  109. object-fit: cover;
  110. border-radius: 10px;
  111. margin-right: 120px;
  112. }
  113. .creator-info h2:nth-child(2) { /* Выбираем второй h2 */
  114. color: #F7AA27; /* Устанавливаем цвет */
  115. }
  116. .certificates {
  117. display: flex;
  118. align-items: center;
  119. margin-bottom: 20px;
  120. }
  121. .certificates-image {
  122. width: 305px;
  123. height: 350px;
  124. object-fit: cover;
  125. border-radius: 10px;
  126. margin-right: 20px;
  127. }
  128. .certificates-text {
  129. font-size: 1em;
  130. line-height: 1.5;
  131. }
  132. .footer {
  133. background-color: #DBAD63;
  134. color: white;
  135. text-align: center;
  136. padding: 15px 0;
  137. }
  138. .LoginBut {
  139. position: relative;
  140. margin-right: 100px;
  141. font-size: 1.2em;
  142. left: 150px;
  143. }
  144. .LoginBut button {
  145. background-color: transparent;
  146. border: none;
  147. padding: 10px 15px;
  148. color: white;
  149. font-size: 1em;
  150. cursor: pointer;
  151. }