survey-webapp/SurveyFrontend/src/components/MySurveyList/MySurveysList.module.css
Tatiana Nikolaeva 5a1cc7c43c api requests
2025-05-22 20:23:09 +05:00

94 lines
1.4 KiB
CSS

.main {
background-color: #F6F6F6;
width: 100%;
max-width: 100vw;
min-height: 100vh;
padding: 34px 10%;
}
.survey {
display: flex;
justify-content: space-between;
background-color: white;
width: 79%;
border-radius: 14px;
padding: 29px 36px 29px 54px;
margin-bottom: 23px;
gap: 20px;
border: none;
text-align: left;
font: inherit;
outline: none;
}
.textContent {
flex-grow: 1;
display: flex;
flex-direction: column;
}
.container{
display: flex;
flex-direction: column;
justify-content: space-between;
}
.buttonDelete{
border-radius: 8px;
align-items: center;
background-color: #FFFFFF;
border: none;
outline: none;
padding: 5px 3px;
color: black;
font-weight: 500;
font-size: 18px;
}
.buttonDelete:hover{
background-color: #EDEDED;
}
.imgDelete{
vertical-align: middle;
}
.status {
width: fit-content;
height: fit-content;
padding: 15px 47px;
border-radius: 15px;
color: #FFFFFF;
white-space: nowrap;
margin-left: 20px;
}
.completed {
background-color: #B0B0B0;
}
.active {
background-color: #65B953;
}
.surveyData {
margin-bottom: 33px;
}
.title {
font-size: 40px;
font-weight: 600;
word-break: break-word;
}
.description {
font-size: 24px;
font-weight: 500;
word-break: break-word;
}
.date {
font-size: 18px;
font-weight: 500;
color: #7D7983;
}