将上述代码优化,要求标题字体增大,背景色为白色,不同模块能够独立区分,略带背景阴影
时间: 2024-10-16 19:05:01 浏览: 29
sap abap编辑背景色调黑,字体变色
为了优化上述代码并满足你的新需求,我们可以调整样式部分,增加一些CSS规则:
```html
<!-- HTML 保持不变 -->
...
<style scoped>
.today-device-alarm {
background-color: white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
}
.today-device-alarm h2 {
font-size: 24px;
margin-top: 20px;
}
.alarm-item {
display: flex;
justify-content: space-between;
padding: 10px 20px;
border-bottom: 1px solid #eaeaea; /* 边框区分不同模块 */
}
.alarm-item:last-child {
border-bottom: none;
}
/* 新增的颜色和间距 */
.alarm-title {
font-size: 28px;
}
.alarm-count {
color: #999;
font-weight: bold;
}
</style>
```
这里,我们将标题字体大小设置为24px,并添加了一个2像素的上下阴影,使得模块看起来更加立体。`alarm-item`的样式进行了微调,添加了边框以区分不同模块,同时给告警数量标签设置了灰色和加粗效果。
现在,每个告警模块都有独立的视觉效果,并且标题字体更大、背景颜色更白,还带有轻微的背景阴影。
阅读全文