today-summary.css
864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
.summary-page {
background-color: #1c2c3b;
color: #e2e8f0;
font-family: '微软雅黑', sans-serif;
height: 100%;
width: 100%;
padding: 1vw;
box-sizing: border-box;
background-image: #1c2c3b;
}
.summary-page * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.content-item {
width: 100%;
height: 100%;
box-sizing: border-box;
}
.task-stats {
display: flex;
gap: 1vw;
flex-wrap: wrap;
}
.stat-item {
background-color: #3f5675;
padding: 1.2vw;
border-radius: 0.2vw;
width: 14vw;
text-align: center;
}
.stat-label {
display: block;
font-size: 1vw;
color: #fff;
margin-bottom: 0.5vw;
}
.stat-value {
display: block;
font-size: 1.3vw;
font-weight: bold;
color: #2c3e50;
}
.stat-value.success {
color: #2ecc71;
}
.stat-value.warning {
color: #f39c12;
}
.stat-value.error {
color: #e74c3c;
width: 100%;
text-align: center;
}