Files
astrbot_plugin_jx3/templates/styles/pages/baizhan.css
T
2026-09-04 22:38:16 +08:00

68 lines
1.4 KiB
CSS

/* ===== 顶部信息 ===== */
.info-bar {
display: flex;
justify-content: space-between;
align-items: center;
background: white;
padding: 16px 20px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
margin-bottom: 20px;
}
.time {
font-size: 20px;
font-weight: 600;
color: var(--jx3-text-secondary);
}
.boss-final {
font-size: 24px;
font-weight: 800;
color: #d63031;
}
/* ===== 网格 ===== */
.grid {
display: grid;
grid-template-columns: repeat(10, 1fr);
gap: 10px;
}
.cell {
background: white;
border-radius: 10px;
padding: 12px;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
min-height: 110px;
/* 核心:全部居中 */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.index {
font-weight: bold;
font-size: 20px;
color: var(--jx3-text);
margin-bottom: 4px;
}
.boss {
color: #d63031;
font-weight: 700;
font-size: 18px;
margin-bottom: 6px;
}
.buff {
color: var(--jx3-blue);
font-size: 18px;
line-height: 1.5em;
word-break: break-word;
}