2021-07-23 03:34:05 +00:00
|
|
|
.ds-survey {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
&--titulo {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2021-07-23 07:00:40 +00:00
|
|
|
align-items: center;
|
2021-07-23 03:34:05 +00:00
|
|
|
|
|
|
|
&--name {
|
2021-07-23 07:00:40 +00:00
|
|
|
color: #1f3779;
|
2021-07-23 03:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&--icon {
|
|
|
|
border-radius: 50%;
|
|
|
|
background-color: #f1f5f9;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
transition: background-color 0.2s ease-in-out;
|
|
|
|
font-size: 1rem;
|
|
|
|
padding: 0.8rem;
|
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
2021-07-23 07:00:40 +00:00
|
|
|
color: #1f3779;
|
2021-07-23 03:34:05 +00:00
|
|
|
pointer-events: visible !important;
|
|
|
|
transition: all 0.1s ease-in-out;
|
|
|
|
|
|
|
|
* {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #e73636;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2021-07-23 07:20:43 +00:00
|
|
|
|
|
|
|
&--small {
|
|
|
|
font-size: 0.8rem;
|
2021-07-24 08:10:24 +00:00
|
|
|
padding: 0.3rem;
|
2021-07-23 07:20:43 +00:00
|
|
|
}
|
2021-07-23 03:34:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--all-question-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
border: 2px dashed #f1f1f1;
|
|
|
|
border-radius: $border-radius-x-large;
|
|
|
|
padding: 2rem 5rem;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--question-wrapper {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--question {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
color: #15131d;
|
|
|
|
padding: 2rem;
|
|
|
|
border-bottom: 1px solid #e9e9e9;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--option {
|
2021-07-23 07:00:40 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-07-23 03:34:05 +00:00
|
|
|
margin: 0.5rem 0;
|
|
|
|
border-radius: 5px;
|
|
|
|
font-weight: 500;
|
|
|
|
letter-spacing: 0.025rem;
|
|
|
|
color: #787878;
|
|
|
|
background-color: transparent;
|
|
|
|
position: relative;
|
|
|
|
top: 0;
|
|
|
|
transition: all 0.1s ease-in-out;
|
2021-07-23 07:00:40 +00:00
|
|
|
|
|
|
|
&--base {
|
|
|
|
border: 1px solid #e6e6e6;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--add {
|
|
|
|
border: 2px dashed #9c9c9c;
|
|
|
|
transition: all 0.1s ease-in-out;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border: 2px dashed #727272;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .ds-survey--add-option {
|
|
|
|
color: #727272;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover .ds-survey--add-option--icon {
|
|
|
|
color: #727272;
|
|
|
|
}
|
|
|
|
}
|
2021-07-23 03:34:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&--closed-option {
|
|
|
|
display: flex;
|
|
|
|
width: 25rem;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 0.9rem;
|
|
|
|
color: #15131d;
|
2021-07-24 08:10:24 +00:00
|
|
|
padding: 1rem;
|
2021-07-23 03:34:05 +00:00
|
|
|
transition: all 0.1s ease-in-out;
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
label {
|
|
|
|
width: 100%;
|
2021-07-24 08:10:24 +00:00
|
|
|
margin: 0;
|
2021-07-23 07:00:40 +00:00
|
|
|
color: #1f3779;
|
2021-07-23 03:34:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--open-option {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 0.9rem;
|
|
|
|
color: #15131d;
|
|
|
|
transition: all 0.1s ease-in-out;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
& textarea {
|
|
|
|
width: 25rem;
|
|
|
|
height: 20rem;
|
|
|
|
padding: 1rem 3rem;
|
|
|
|
color: #787878;
|
|
|
|
border: none;
|
|
|
|
resize: none;
|
2021-07-23 07:00:40 +00:00
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&--add-option {
|
|
|
|
width: 100%;
|
|
|
|
color: #919191;
|
|
|
|
transition: all 0.1s ease-in-out;
|
|
|
|
pointer-events: none;
|
|
|
|
|
|
|
|
&--icon {
|
|
|
|
margin: 0 1rem;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
|
|
|
color: #919191;
|
|
|
|
pointer-events: visible !important;
|
|
|
|
transition: all 0.1s ease-in-out;
|
|
|
|
|
|
|
|
* {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2021-07-23 03:34:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-28 07:08:11 +00:00
|
|
|
|
|
|
|
.iconos-colab {
|
|
|
|
margin-right: -8px;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.photo-collab {
|
|
|
|
width: 40px;
|
|
|
|
border-radius: 50px;
|
|
|
|
border: 2px solid #fff;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
margin-top: -4px;
|
|
|
|
}
|
|
|
|
}
|