Добавление Mainpage
Добавлено отображение задач на Main странице сайта
This commit is contained in:
53
src/css/Mainpage.css
Normal file
53
src/css/Mainpage.css
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user