123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- /* Основные стили */
- body {
- font-family: Arial, sans-serif;
- margin: 0;
- padding: 0;
- background-color: #1c1c1c;
- color: #ffffff;
- }
- /* Шапка */
- header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: #000000;
- color: white;
- padding: 10px 20px;
- }
- header .logo h1 {
- margin: 0;
- }
- .logo a {
- color: inherit;
- text-decoration: none;
- }
- header nav ul {
- list-style: none;
- margin: 0;
- padding: 0;
- display: flex;
- }
- header nav ul li {
- margin-left: 20px;
- }
- header nav ul li a {
- color: white;
- text-decoration: none;
- }
- header .auth a {
- color: white;
- margin-left: 15px;
- text-decoration: none;
- }
- /* Главное меню */
- main {
- background-color: #333333;
- padding: 20px;
- }
- /* Секция с информацией об орангутанах */
- .info-section .image-grid {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- gap: 20px;
- }
- .image-item {
- text-align: justify;
- }
- .image-item img {
- width: 100%;
- height: 400px;
- object-fit: cover;
- }
- /* Секция партнеров */
- .partners-section .partners-grid {
- display: grid;
- grid-template-columns: repeat(3, 1fr);
- gap: 20px;
- }
- .partner-item {
- border: 1px solid #555555;
- padding: 10px;
- text-align: center;
- }
- .partner-item img {
- width: 400px; /* чтобы логотипы не выходили за пределы блока */
- height: 400px; /* сохранять пропорции изображения */
- margin-bottom: 10px; /* отступ под логотипом */
- }
- .partner-link {
- display: inline-block; /* чтобы кнопка корректно отображалась */
- margin-top: 10px; /* отступ сверху */
- padding: 10px 15px; /* внутренние отступы кнопки */
- background-color: #555555; /* цвет фона кнопки */
- color: white; /* цвет текста кнопки */
- }
- /* Подвал */
- footer {
- background-color: #000000;
- color: white;
- text-align: center;
- padding: 10px 20px;
- display: flex;
- margin: 0 auto;
- justify-content: center;
- align-items: center;
- text-align: center;
- }
- .footer-content {
- text-align: center;
- }
- /* Форма регистрации */
- .registration-section {
- background-color: #333333;
- color: white;
- padding: 20px;
- margin: 20px;
- border-radius: 10px;
- }
- .registration-section h2 {
- margin-top: 0;
- }
- .registration-section form {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .registration-section .form-group {
- margin-bottom: 20px;
- width: 300px;
- }
- .registration-section label {
- display: block;
- margin-bottom: 5px;
- }
- .registration-section input[type="text"],
- .registration-section input[type="email"],
- .registration-section input[type="password"] {
- width: 100%;
- padding: 10px;
- border: 1px solid #555555;
- border-radius: 5px;
- }
- .registration-section button {
- padding: 10px 20px;
- background-color: #555555;
- color: white;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- }
- .registration-section button:hover {
- background-color: #333333;
- }
- /* Форма входа */
- .auth {
- display: flex;
- }
- .login-link, .registrer-link {
- margin-right: 10px;
- }
- .login-section {
- background-color: #333333;
- color: white;
- padding: 20px;
- margin: 20px;
- border-radius: 10px;
- }
- .login-section h2 {
- margin-top: 0;
- }
- .login-section form {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .login-section .form-group {
- margin-bottom: 20px;
- width: 300px;
- }
- .login-section label {
- display: block;
- margin-bottom: 5px;
- }
- .login-section input[type="text"],
- .login-section input[type="password"] {
- width: 100%;
- padding: 10px;
- border: 1px solid #555555;
- border-radius: 5px;
- }
- .login-section button {
- padding: 10px 20px;
- background-color: #555555;
- color: white;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- }
- .login-section button:hover {
- background-color: #333333;
- }
- /* Личный кабинет */
- .profile-section {
- background-color: #333333;
- color: white;
- padding: 20px;
- margin: 20px;
- border-radius: 10px;
- }
- .profile-section h2 {
- margin-top: 0;
- }
- .profile-section form {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .profile-section .form-group {
- margin-bottom: 20px;
- width: 300px;
- }
- .profile-section label {
- display: block;
- margin-bottom: 5px;
- }
- .profile-section input[type="text"],
- .profile-section input[type="email"],
- .profile-section input[type="password"] {
- width: 100%;
- padding: 10px;
- border: 1px solid #555555;
- border-radius: 5px;
- }
- .profile-section button {
- padding: 10px 20px;
- background-color: #555555;
- color: white;
- border: none;
- border-radius: 5px;
- cursor: pointer;
- }
- .profile-section button:hover {
- background-color: #333333;
- }
|