2024-04-23 21:49:16 +08:00
|
|
|
:root {
|
|
|
|
--main-text-color: #fff;
|
2024-04-27 02:20:44 +08:00
|
|
|
--sub-text-color: #ccc;
|
|
|
|
--tip-text-color: #999;
|
2024-04-26 15:02:46 +08:00
|
|
|
--device-info-width: 240px;
|
2024-04-23 21:49:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.bot-info {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bot-icon {
|
|
|
|
display: flex;
|
2024-04-27 02:20:44 +08:00
|
|
|
width: 220px;
|
2024-04-23 21:49:16 +08:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bot-icon-img {
|
2024-04-27 02:20:44 +08:00
|
|
|
height: 220px;
|
2024-05-07 08:48:37 +08:00
|
|
|
width: 220px;
|
2024-04-23 21:49:16 +08:00
|
|
|
border-radius: 50%;
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bot-name {
|
|
|
|
color: var(--main-text-color);
|
|
|
|
display: flex;
|
2024-04-27 02:20:44 +08:00
|
|
|
font-size: 45px;
|
2024-04-23 21:49:16 +08:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bot-tag {
|
2024-04-27 02:20:44 +08:00
|
|
|
white-space: break-spaces;
|
2024-04-23 21:49:16 +08:00
|
|
|
color: var(--sub-text-color);
|
2024-04-27 02:20:44 +08:00
|
|
|
font-size: 30px;
|
2024-04-23 21:49:16 +08:00
|
|
|
font-weight: 700;
|
|
|
|
line-height: 1.6;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bot-tag[suffix="1"]::after {
|
2024-04-27 02:20:44 +08:00
|
|
|
content: "|";
|
2024-04-23 21:49:16 +08:00
|
|
|
display: inline-block;
|
|
|
|
margin: 0 5px;
|
|
|
|
height: 30%;
|
|
|
|
line-height: 50%;
|
|
|
|
color: var(--tip-text-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*修改bot-info 下hr样式*/
|
|
|
|
.bot-info hr {
|
|
|
|
border: 0;
|
|
|
|
height: 4px;
|
|
|
|
background: var(--tip-text-color);
|
|
|
|
margin: 10px 0;
|
|
|
|
width: 100%;
|
2024-04-26 15:02:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#hardware-info {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-info {
|
|
|
|
max-width: 30%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-chart {
|
|
|
|
display: flex;
|
|
|
|
height: var(--device-info-width);
|
|
|
|
width: var(--device-info-width);
|
|
|
|
margin-bottom: 20px;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.device-tags {
|
|
|
|
text-align: center;
|
|
|
|
color: var(--sub-text-color);
|
|
|
|
font-size: 24px;
|
|
|
|
max-width: var(--device-info-width);
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
.disk-info {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 60px;
|
|
|
|
background-color: #ffffff44;
|
|
|
|
border-radius: 30px;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.disk-usage {
|
|
|
|
background-color: #a2d8f4;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 30px;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.disk-title {
|
|
|
|
position: absolute;
|
|
|
|
color: var(--main-text-color);
|
|
|
|
font-size: 24px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
margin-left: 20px;
|
|
|
|
text-align: left;
|
|
|
|
z-index: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
#motto-text {
|
|
|
|
font-size: 36px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
color: var(--main-text-color);
|
|
|
|
text-align: center;
|
|
|
|
margin: 30px 0 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#motto-from {
|
2024-04-26 20:20:53 +08:00
|
|
|
font-size: 30px;
|
2024-04-26 15:02:46 +08:00
|
|
|
font-style: italic;
|
|
|
|
color: var(--sub-text-color);
|
|
|
|
text-align: right;
|
2024-04-27 02:20:44 +08:00
|
|
|
}
|
|
|
|
|