67 lines
1 KiB
CSS
67 lines
1 KiB
CSS
.main {
|
|
background-color: #F6F6F6;
|
|
width: 100%;
|
|
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;
|
|
}
|
|
|
|
.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;
|
|
}
|