guild_front/src/components/ProjectTicket/projectTicket.scss

114 lines
1.8 KiB
SCSS
Raw Normal View History

2023-04-14 15:52:21 +03:00
.project {
2023-11-07 16:37:03 +03:00
display: flex;
flex-direction: column;
2023-04-14 15:52:21 +03:00
position: relative;
2023-10-02 18:10:40 +03:00
width: 322px;
2023-04-14 15:52:21 +03:00
background: #f1f1f1;
border-radius: 12px;
2023-11-07 16:37:03 +03:00
2023-04-14 15:52:21 +03:00
cursor: pointer;
max-width: 440px;
2023-06-23 10:55:22 +03:00
transition: 0.4s;
&:hover {
transition: 0.4s;
box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.11);
}
2023-04-14 15:52:21 +03:00
@media (max-width: 1068px) {
width: 47%;
}
@media (max-width: 785px) {
width: 100%;
}
2023-10-02 18:10:40 +03:00
&__link {
2023-04-14 15:52:21 +03:00
font-weight: 700;
2023-11-23 18:15:46 +03:00
width: 194px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2023-04-14 15:52:21 +03:00
font-size: 18px;
line-height: 32px;
color: #111112;
2023-10-02 18:10:40 +03:00
margin-bottom: 22px;
2023-07-04 16:19:46 +03:00
max-width: 380px;
2023-05-02 18:51:19 +03:00
&:hover {
color: black;
}
2023-04-14 15:52:21 +03:00
}
&__info {
display: flex;
align-items: center;
position: relative;
2023-11-07 16:37:03 +03:00
margin-bottom: 45px;
2023-04-14 15:52:21 +03:00
p {
color: #6f6f6f;
margin-bottom: 0;
2023-10-02 18:10:40 +03:00
font-size: 12px;
font-weight: 500;
line-height: 17px;
width: 60px;
2023-04-14 15:52:21 +03:00
}
.count {
margin-left: 8px;
2023-10-02 18:10:40 +03:00
width: 26px;
height: 26px;
2023-04-14 15:52:21 +03:00
display: flex;
align-items: center;
justify-content: center;
background: #dddddd;
border-radius: 4px;
font-weight: 500;
font-size: 14px;
line-height: 24px;
color: #6f6f6f;
}
.add {
color: #6f6f6f;
font-size: 17px;
margin: 0 25px 0 auto;
@media (max-width: 430px) {
display: none;
}
}
2023-10-19 19:19:45 +03:00
}
2023-04-14 15:52:21 +03:00
2023-10-19 19:19:45 +03:00
.menu-settings {
position: absolute;
font-size: 21px;
color: #6f6f6f;
right: 26px;
2023-11-19 20:01:27 +03:00
top: 10px;
2023-04-14 15:52:21 +03:00
}
2023-10-02 18:10:40 +03:00
&__avatar {
width: 25px;
height: 25px;
margin-left: 56px;
}
2024-01-31 16:57:22 +03:00
&__open-tracker {
2023-11-07 16:37:03 +03:00
padding: 17px 26px 16px;
}
2023-10-02 18:10:40 +03:00
&__statistics {
2023-11-07 16:37:03 +03:00
position: absolute;
bottom: 18px;
left: 26px;
2023-11-19 20:01:27 +03:00
color: #0042b4;
2023-10-02 18:10:40 +03:00
text-decoration: underline;
2023-11-19 20:01:27 +03:00
font-size: 14px;
font-weight: 400;
2023-10-02 18:10:40 +03:00
line-height: 17px;
}
2023-04-14 15:52:21 +03:00
}