/
error_404
/
project_2
Обзор
Документация
Войти
/
error_404
/
project_2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
style.css
155 строк
3 KB
error_404
upload files
03 сен 2025, 15:15
03 сен 2025, 15:15
b603841
Код
Авторство
О чём код?
/* Регистрация/Авторизация */ .body2 { font-family: Arial, sans-serif; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f0f0f0; } .RRform { background-color: #ffffff; padding: 60px; border-radius: 5px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } .RRlabel { display: block; margin-bottom: 5px; } .RRinput { width: 90%; padding: 10px; margin-bottom: 20px; border-radius: 5px; border: 1px solid #ccc; } .RRbutton { background-color: #663c1e; padding: 10px 20px; color: #fff; border: none; border-radius: 5px; cursor: pointer; } .RRbutton:hover { background-color: #8f5429; } .RRbutton:active { background-color: #2b2b2b; } /* Навигационное меню */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f0f0f0; } header h1{ display: inline-block; margin: 0 900px 0 80px; color: #b56a35; font-size: 2.5em; } header { background-color: #3f2512; color: white; padding: 30px 0 35px; } footer { background-color: #3f2512; color: white; text-align: center; padding: 30px; bottom: 0; width: 100%; } /* ПОИСК */ .event{ margin-left: 5%; } .container { flex-direction: column; align-items: center; margin: 20px; } #searchbar { margin: 10px; padding: 10px; border-radius: 5px; width: 50%; box-sizing: border-box; } #list { list-style: none; padding: 0; margin: 0; } .aaa { font-size: 1.2em; padding: 10px; border-bottom: 1px solid #ccc; animation: fadeIn 0.5s ease-in-out; } .aaa:last-child { border-bottom: none; } @keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } p{ margin: 3; } #popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); display: none; } #popup { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background-color: #fff; padding: 20px; border-radius: 5px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }