2023-04-10 21:22:22 +03:00
|
|
|
.modal-add {
|
|
|
|
z-index: 9;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
background-color: rgba(0, 0, 0, 0.11);
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
transform: scale(0);
|
|
|
|
|
|
|
|
&__content {
|
|
|
|
position: relative;
|
|
|
|
width: 424px;
|
|
|
|
background: linear-gradient(180deg, #ffffff 0%, #ebebeb 100%);
|
2023-04-20 20:10:08 +03:00
|
|
|
border-radius: 24px;
|
2023-04-10 21:22:22 +03:00
|
|
|
|
2023-04-12 18:22:25 +03:00
|
|
|
padding: 60px 60px 30px 60px;
|
2023-04-10 21:22:22 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-04-28 14:56:59 +03:00
|
|
|
align-items: center;
|
2023-04-10 21:22:22 +03:00
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title-project {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
.input-container {
|
|
|
|
width: 287px;
|
|
|
|
height: 35px;
|
|
|
|
background: #ffffff;
|
|
|
|
border-radius: 8px;
|
2023-04-28 14:56:59 +03:00
|
|
|
margin-top: 12px;
|
2023-04-10 21:22:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-weight: 500;
|
2023-05-05 14:48:45 +03:00
|
|
|
font-size: 22px;
|
2023-04-10 21:22:22 +03:00
|
|
|
line-height: 26px;
|
2023-04-12 18:22:25 +03:00
|
|
|
color: #263238 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__decs {
|
|
|
|
font-weight: 300;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 14px;
|
2023-05-03 22:06:19 +03:00
|
|
|
margin: 12px 0 16px 0;
|
2023-04-12 18:22:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
&__textarea {
|
|
|
|
resize: none;
|
|
|
|
width: 302px;
|
|
|
|
height: 83px;
|
|
|
|
background: #ffffff;
|
|
|
|
border-radius: 8px;
|
|
|
|
border: none;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 18px;
|
2023-04-10 21:22:22 +03:00
|
|
|
}
|
2023-05-17 02:51:31 +03:00
|
|
|
|
|
|
|
.select__worker {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
padding: 5px;
|
|
|
|
background: white;
|
|
|
|
border-radius: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
p {
|
|
|
|
max-width: 150px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
transition: all 0.3s ease;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__dropDown {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
padding: 5px;
|
|
|
|
top: 35px;
|
|
|
|
left: 0;
|
|
|
|
background: white;
|
|
|
|
border-radius: 5px;
|
|
|
|
row-gap: 5px;
|
|
|
|
|
|
|
|
.worker {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.open {
|
|
|
|
.arrow {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
}
|
2023-04-10 21:22:22 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.name-project {
|
|
|
|
margin-left: 10px;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
height: 100%;
|
|
|
|
width: 90%;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-add {
|
2023-04-28 14:56:59 +03:00
|
|
|
margin: 20px;
|
2023-04-10 21:22:22 +03:00
|
|
|
width: 130px;
|
|
|
|
height: 37px;
|
|
|
|
background: #52b709;
|
|
|
|
border-radius: 44px;
|
|
|
|
border: none;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 32px;
|
|
|
|
color: #ffffff;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2023-04-12 22:20:05 +03:00
|
|
|
}
|
2023-04-10 21:22:22 +03:00
|
|
|
|
2023-04-12 22:20:05 +03:00
|
|
|
.modal-add.active {
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
2023-04-10 21:22:22 +03:00
|
|
|
|
2023-04-12 22:20:05 +03:00
|
|
|
.exit {
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
|
|
|
top: 35px;
|
|
|
|
right: 40px;
|
2023-04-10 21:22:22 +03:00
|
|
|
|
2023-04-12 22:20:05 +03:00
|
|
|
&:before,
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: 16px;
|
|
|
|
height: 2px;
|
|
|
|
background: #263238;
|
2023-04-10 21:22:22 +03:00
|
|
|
}
|
|
|
|
|
2023-04-12 22:20:05 +03:00
|
|
|
&:before {
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
&:after {
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
}
|
2023-04-10 21:22:22 +03:00
|
|
|
}
|