today-summary.css 864 Bytes
.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;
}