Добавление Mainpage

Добавлено отображение задач на Main странице сайта
This commit is contained in:
Dozzy7528
2026-02-15 20:02:33 +03:00
parent 29c580d26d
commit 88e1e4f0f3
2 changed files with 92 additions and 7 deletions

53
src/css/Mainpage.css Normal file
View File

@@ -0,0 +1,53 @@
.content-wrapper{
transition: all .4s ease;
}
.main-layout {
background-color: #1f2430;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
padding: 20px;
margin: 10px auto;
max-width: 1200px;
}
.left-content {
flex: 1;
text-align: left; /* Выравнивание текста слева */
}
.left-content h1,
.left-content p,
.left-content li {
text-align: left;
color: #CAD1D8;
}
.tasks-box {
flex: 0 0 300px; /* Фиксированная ширина бокса справа */
background-color: #33404d;
border-radius: 8px;
padding: 20px;
border: 1px solid #999;
height: fit-content;
}
.tasks-box h3 {
margin-top: 0;
color: #CAD1D8;
text-align: center;
}
.tasks-box ul {
list-style-type: none;
padding: 0;
}
.tasks-box li {
background-color: #1f2430;
margin-bottom: 10px;
padding: 10px;
border-radius: 4px;
color: #CAD1D8;
text-align: left;
}