注意:在保存之后,您可能需要清除浏览器缓存才能看到所作出的变更的影响。
?_=1
来访问最新页面。https://zh.moegirl.org.cn/User:Evanescence_de_Sonder/style.css?_=1
/* 红色星星样式 - 萌娘百科兼容版本 */
.red-star {
display: inline-block;
width: 0;
height: 0;
margin: 20px;
position: relative;
border-right: 50px solid transparent;
border-bottom: 35px solid #ff3b30;
border-left: 50px solid transparent;
transform: rotate(35deg);
}
.red-star:before {
content: "";
display: block;
width: 0;
height: 0;
position: absolute;
top: -22px;
left: -32px;
border-right: 15px solid transparent;
border-bottom: 45px solid #ff3b30;
border-left: 15px solid transparent;
transform: rotate(-35deg);
}
.red-star:after {
content: "";
display: block;
width: 0;
height: 0;
position: absolute;
top: 2px;
left: -52px;
border-right: 50px solid transparent;
border-bottom: 35px solid #ff3b30;
border-left: 50px solid transparent;
transform: rotate(-70deg);
}
/* 容器样式 */
.star-container {
text-align: center;
padding: 20px;
margin: 15px 0;
}
/* 文本说明样式 */
.star-description {
font-family: "Microsoft YaHei", sans-serif;
color: #333;
margin-top: 10px;
font-size: 14px;
}
/* 简单闪烁效果(不使用@keyframes,萌娘百科可能限制动画) */
.red-star.simple-animate {
opacity: 0.8;
transition: opacity 0.5s ease;
}
.red-star.simple-animate:hover {
opacity: 1;
}