style.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. /* Основные стили */
  2. body {
  3. font-family: Arial, sans-serif;
  4. margin: 0;
  5. padding: 0;
  6. background-color: #1c1c1c;
  7. color: #ffffff;
  8. }
  9. /* Шапка */
  10. header {
  11. display: flex;
  12. justify-content: space-between;
  13. align-items: center;
  14. background-color: #000000;
  15. color: white;
  16. padding: 10px 20px;
  17. }
  18. header .logo h1 {
  19. margin: 0;
  20. }
  21. .logo a {
  22. color: inherit;
  23. text-decoration: none;
  24. }
  25. header nav ul {
  26. list-style: none;
  27. margin: 0;
  28. padding: 0;
  29. display: flex;
  30. }
  31. header nav ul li {
  32. margin-left: 20px;
  33. }
  34. header nav ul li a {
  35. color: white;
  36. text-decoration: none;
  37. }
  38. header .auth a {
  39. color: white;
  40. margin-left: 15px;
  41. text-decoration: none;
  42. }
  43. /* Главное меню */
  44. main {
  45. background-color: #333333;
  46. padding: 20px;
  47. }
  48. /* Секция с информацией об орангутанах */
  49. .info-section .image-grid {
  50. display: grid;
  51. grid-template-columns: repeat(2, 1fr);
  52. gap: 20px;
  53. }
  54. .image-item {
  55. text-align: justify;
  56. }
  57. .image-item img {
  58. width: 100%;
  59. height: 400px;
  60. object-fit: cover;
  61. }
  62. /* Секция партнеров */
  63. .partners-section .partners-grid {
  64. display: grid;
  65. grid-template-columns: repeat(3, 1fr);
  66. gap: 20px;
  67. }
  68. .partner-item {
  69. border: 1px solid #555555;
  70. padding: 10px;
  71. text-align: center;
  72. }
  73. .partner-item img {
  74. width: 400px; /* чтобы логотипы не выходили за пределы блока */
  75. height: 400px; /* сохранять пропорции изображения */
  76. margin-bottom: 10px; /* отступ под логотипом */
  77. }
  78. .partner-link {
  79. display: inline-block; /* чтобы кнопка корректно отображалась */
  80. margin-top: 10px; /* отступ сверху */
  81. padding: 10px 15px; /* внутренние отступы кнопки */
  82. background-color: #555555; /* цвет фона кнопки */
  83. color: white; /* цвет текста кнопки */
  84. }
  85. /* Подвал */
  86. footer {
  87. background-color: #000000;
  88. color: white;
  89. text-align: center;
  90. padding: 10px 20px;
  91. display: flex;
  92. margin: 0 auto;
  93. justify-content: center;
  94. align-items: center;
  95. text-align: center;
  96. }
  97. .footer-content {
  98. text-align: center;
  99. }
  100. /* Форма регистрации */
  101. .registration-section {
  102. background-color: #333333;
  103. color: white;
  104. padding: 20px;
  105. margin: 20px;
  106. border-radius: 10px;
  107. }
  108. .registration-section h2 {
  109. margin-top: 0;
  110. }
  111. .registration-section form {
  112. display: flex;
  113. flex-direction: column;
  114. align-items: center;
  115. }
  116. .registration-section .form-group {
  117. margin-bottom: 20px;
  118. width: 300px;
  119. }
  120. .registration-section label {
  121. display: block;
  122. margin-bottom: 5px;
  123. }
  124. .registration-section input[type="text"],
  125. .registration-section input[type="email"],
  126. .registration-section input[type="password"] {
  127. width: 100%;
  128. padding: 10px;
  129. border: 1px solid #555555;
  130. border-radius: 5px;
  131. }
  132. .registration-section button {
  133. padding: 10px 20px;
  134. background-color: #555555;
  135. color: white;
  136. border: none;
  137. border-radius: 5px;
  138. cursor: pointer;
  139. }
  140. .registration-section button:hover {
  141. background-color: #333333;
  142. }
  143. /* Форма входа */
  144. .auth {
  145. display: flex;
  146. }
  147. .login-link, .registrer-link {
  148. margin-right: 10px;
  149. }
  150. .login-section {
  151. background-color: #333333;
  152. color: white;
  153. padding: 20px;
  154. margin: 20px;
  155. border-radius: 10px;
  156. }
  157. .login-section h2 {
  158. margin-top: 0;
  159. }
  160. .login-section form {
  161. display: flex;
  162. flex-direction: column;
  163. align-items: center;
  164. }
  165. .login-section .form-group {
  166. margin-bottom: 20px;
  167. width: 300px;
  168. }
  169. .login-section label {
  170. display: block;
  171. margin-bottom: 5px;
  172. }
  173. .login-section input[type="text"],
  174. .login-section input[type="password"] {
  175. width: 100%;
  176. padding: 10px;
  177. border: 1px solid #555555;
  178. border-radius: 5px;
  179. }
  180. .login-section button {
  181. padding: 10px 20px;
  182. background-color: #555555;
  183. color: white;
  184. border: none;
  185. border-radius: 5px;
  186. cursor: pointer;
  187. }
  188. .login-section button:hover {
  189. background-color: #333333;
  190. }
  191. /* Личный кабинет */
  192. .profile-section {
  193. background-color: #333333;
  194. color: white;
  195. padding: 20px;
  196. margin: 20px;
  197. border-radius: 10px;
  198. }
  199. .profile-section h2 {
  200. margin-top: 0;
  201. }
  202. .profile-section form {
  203. display: flex;
  204. flex-direction: column;
  205. align-items: center;
  206. }
  207. .profile-section .form-group {
  208. margin-bottom: 20px;
  209. width: 300px;
  210. }
  211. .profile-section label {
  212. display: block;
  213. margin-bottom: 5px;
  214. }
  215. .profile-section input[type="text"],
  216. .profile-section input[type="email"],
  217. .profile-section input[type="password"] {
  218. width: 100%;
  219. padding: 10px;
  220. border: 1px solid #555555;
  221. border-radius: 5px;
  222. }
  223. .profile-section button {
  224. padding: 10px 20px;
  225. background-color: #555555;
  226. color: white;
  227. border: none;
  228. border-radius: 5px;
  229. cursor: pointer;
  230. }
  231. .profile-section button:hover {
  232. background-color: #333333;
  233. }