guild_front/src/components/ProjectTiket/projectTiket.scss

106 lines
1.7 KiB
SCSS
Raw Normal View History

2023-04-14 15:52:21 +03:00
.project {
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;
padding: 17px 26px 16px;
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;
font-size: 18px;
line-height: 32px;
color: #111112;
2023-10-02 18:10:40 +03:00
margin-bottom: 22px;
2023-04-20 20:10:08 +03:00
overflow: hidden;
white-space: nowrap;
2023-05-02 18:51:19 +03:00
display: flex;
2023-04-20 20:10:08 +03:00
text-overflow: ellipsis;
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-10-02 18:10:40 +03:00
margin-bottom: 27px;
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;
top: 59px;
2023-04-14 15:52:21 +03:00
}
2023-10-02 18:10:40 +03:00
&__avatar {
width: 25px;
height: 25px;
margin-left: 56px;
}
&__statistics {
color: #678eda;
margin-top: 27px;
text-decoration: underline;
font-size: 12px;
font-weight: 300;
line-height: 17px;
}
2023-04-14 15:52:21 +03:00
}