mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 04:35:42 +00:00
95bebaaac8
* `#深渊出场率`、`#角色持有率` 等功能样式及字体微调
80 lines
1.5 KiB
CSS
80 lines
1.5 KiB
CSS
.card-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
.card-list .item {
|
|
margin: 0 0 10px 10px;
|
|
border-radius: 7px;
|
|
box-shadow: 0 2px 6px 0 rgba(132, 93, 90, 0.3);
|
|
height: 88px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
background: #e7e5d9;
|
|
}
|
|
.card-list .item img {
|
|
width: 70px;
|
|
height: 70px;
|
|
border-radius: 7px 7px 20px 0;
|
|
}
|
|
.card-list .item.star5 img {
|
|
background-image: url(../common/item/bg5.png);
|
|
width: 100%;
|
|
height: 70px;
|
|
/*filter: brightness(1.1);*/
|
|
background-size: 100%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.card-list .item.star4 img {
|
|
width: 100%;
|
|
height: 70px;
|
|
background-image: url(../common/item/bg4.png);
|
|
background-size: 100%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
.card-list .item .num {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: 9;
|
|
font-size: 18px;
|
|
text-align: center;
|
|
color: #fff;
|
|
padding: 1px 5px;
|
|
border-radius: 4px;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
}
|
|
.card-list .item .name,
|
|
.card-list .item .num_name {
|
|
position: absolute;
|
|
top: 70px;
|
|
left: 0;
|
|
z-index: 9;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
width: 100%;
|
|
height: 16px;
|
|
line-height: 18px;
|
|
}
|
|
.card-list .item .num_name {
|
|
font-size: 16px;
|
|
}
|
|
.line_box {
|
|
height: 32px;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 16px;
|
|
color: #fff;
|
|
padding-bottom: 5px;
|
|
margin-top: 15px;
|
|
margin-bottom: 5px;
|
|
}
|
|
.line_box .line {
|
|
height: 1px;
|
|
flex-grow: 1;
|
|
background-color: #ebebeb;
|
|
margin: 0px 10px;
|
|
}
|
|
/*# sourceMappingURL=abyss-pct.css.map */ |