/
Oleg11234
/
TaskList
Обзор
Документация
Войти
/
Oleg11234
/
TaskList
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/components/Tasks.css
64 строки
1 KB
Oleg
format code
10 дек 2025, 20:55
10 дек 2025, 20:55
803443e
Код
Авторство
О чём код?
.tasks { height: 90vh; display: flex; overflow-x: auto; } .task-body { border: 5px solid black; border-radius: 2px; background-color: rgba(185, 179, 8, 0.5); height: 80vh; width: 18vw; margin-left: 1vw; margin-top: 5vh; flex-shrink: 0; position: relative; } .task-label { height: 5%; /* 1 строка */ font-weight: bold; margin-left: 5px; margin-right: 5px; } .task-title { height: 5%; /* 1 строка */ width: 95%; font-weight: bold; color: black; margin-left: 10px; margin-right: 10px; } .task-description { height: 60%; width: 95%; text-align: left; color: black; margin-top: 5px; margin-left: 10px; margin-right: 10px; overflow-wrap: break-word; } .task-status { height: 5%; /* 1 строка */ width: 95%; text-align: left; font-size: 100%; margin-top: 5px; margin-left: 10px; margin-right: 10px; } .delete-task-button { height: 5%; width: 30%; color: white; background-color: red; bottom: 10px; right: 5px; position: absolute; }