萌娘百科:愚人节/styles.css
< 萌娘百科:愚人节
/* 2025年———验证码 */
.moe-captcha {
font-size: 14px;
width: 320px;
border: 1px solid #aaa;
background: #f8f8f8;
color: #222;
border-radius: 0.5em;
display: inline-flex;
align-items: center;
padding: 0.5em;
cursor: pointer;
}
.loader {
width: 42px;
height: 42px;
border: 5px dotted #02A54D;
border-radius: 50%;
display: inline-block;
position: relative;
box-sizing: border-box;
animation: rotation 3.6s linear infinite;
}
.moe-captcha-text {
flex: 1;
}
.moe-captcha-text .title {
margin: 0 0 0.5em 0;
font-size: 1.25em;
font-weight: 700;
}
.moe-captcha-image img {
width: 72px;
}
@keyframes rotation {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}