134 lines
3.3 KiB
SCSS
134 lines
3.3 KiB
SCSS
.detail-page-content-participants {
|
|
padding: 24px 15px 0;
|
|
box-sizing: border-box;
|
|
|
|
.participants-title {
|
|
display: flex;
|
|
padding-bottom: 6px;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
color: #fff;
|
|
font-feature-settings: "liga" off, "clig" off;
|
|
text-overflow: ellipsis;
|
|
font-family: "PingFang SC";
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
line-height: 24px; /* 150% */
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.participants-list {
|
|
padding: 10px 0 0;
|
|
height: 162px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 8px;
|
|
|
|
&-application {
|
|
display: flex;
|
|
width: 108px;
|
|
height: 162px;
|
|
padding: 16px 12px 10px 12px;
|
|
box-sizing: border-box;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 8px;
|
|
align-self: stretch;
|
|
border-radius: 20px;
|
|
border: 1px dashed rgba(255, 255, 255, 0.2);
|
|
background: rgba(255, 255, 255, 0.16);
|
|
flex: 0 0 auto;
|
|
|
|
&-icon {
|
|
width: 28px;
|
|
height: 28px;
|
|
}
|
|
|
|
&-text {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
font-feature-settings: "liga" off, "clig" off;
|
|
font-family: "PingFang SC";
|
|
font-size: 12px;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
line-height: 20px; /* 166.667% */
|
|
}
|
|
}
|
|
|
|
&-scroll {
|
|
flex: 0 0 auto;
|
|
width: calc(100% - 116px);
|
|
|
|
&-content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 8px;
|
|
height: 100%;
|
|
flex-wrap: nowrap;
|
|
|
|
.participants-list-item {
|
|
display: flex;
|
|
width: 108px;
|
|
height: 100%;
|
|
padding: 16px 4px 10px 4px;
|
|
box-sizing: border-box;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 4px;
|
|
border-radius: 20px;
|
|
border: 0.5px solid rgba(255, 255, 255, 0.2);
|
|
background: rgba(255, 255, 255, 0.16);
|
|
flex: 0 0 auto;
|
|
|
|
.participants-list-item-avatar {
|
|
width: 60px;
|
|
height: 60px;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
&-name {
|
|
width: 100%;
|
|
color: rgba(255, 255, 255, 0.85);
|
|
text-align: center;
|
|
font-feature-settings: "liga" off, "clig" off;
|
|
font-family: "PingFang SC";
|
|
font-size: 13px;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
line-height: 24px; /* 184.615% */
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
&-level {
|
|
color: rgba(255, 255, 255, 0.45);
|
|
text-align: center;
|
|
font-feature-settings: "liga" off, "clig" off;
|
|
font-family: "PingFang SC";
|
|
font-size: 12px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 20px; /* 166.667% */
|
|
}
|
|
|
|
&-role {
|
|
color: #fff;
|
|
text-align: center;
|
|
font-feature-settings: "liga" off, "clig" off;
|
|
font-family: "PingFang SC";
|
|
font-size: 12px;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
line-height: 20px; /* 166.667% */
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|