/
maxxon
/
web-static-labs
Обзор
Документация
Войти
/
maxxon
/
web-static-labs
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
html/lab5/task2/style.css
87 строк
2 KB
Dasha_10
изменения
19 окт 2025, 18:51
19 окт 2025, 18:51
b6adcb0
Код
Авторство
О чём код?
body { font-family: sans-serif; background-color: #f0f8ff; /* Очень светлый голубой */ color: #333; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; } .container { width: 80%; max-width: 800px; background-color: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } h1 { color: #4682b4; /* Steel Blue */ text-align: center; } .input-area { display: flex; flex-direction: column; margin-bottom: 20px; } textarea { padding: 10px; border: 1px solid #add8e6; /* Light Blue */ border-radius: 4px; margin-bottom: 10px; resize: vertical; } button { padding: 10px 15px; background-color: #4682b4; /* Steel Blue */ color: white; border: none; border-radius: 4px; cursor: pointer; transition: background-color 0.3s; } button:hover { background-color: #2e628b; /* Darker Steel Blue */ } .task-list { display: flex; flex-direction: column; } .task-item { background-color: #e6f7ff; /* Lighter Blue */ border: 1px solid #add8e6; /* Light Blue */ border-radius: 4px; padding: 10px; margin-bottom: 10px; transition: background-color 0.3s, border-color 0.3s; } .task-item:hover { background-color: #b0e2ff; /* Even Lighter Blue */ border-color: #4682b4; /* Steel Blue */ } .task-item p { margin: 0 0 5px 0; } .task-item .task-buttons { display: flex; justify-content: flex-end; /* Выравнивание кнопок вправо */ } .task-item .task-buttons button { margin-left: 5px; /* Отступ между кнопками */ padding: 5px 10px; /* Уменьшенные отступы для кнопок */ font-size: smaller; }