You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.0 KiB
59 lines
1.0 KiB
#header-container {
|
|
background-color: beige;
|
|
}
|
|
|
|
.card {
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
border-color: black;
|
|
/* background-color: aqua; */
|
|
padding: 5px 10px;
|
|
margin: 5px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.server-name {
|
|
background-color: rgb(0, 0, 0);
|
|
color: white;
|
|
border-radius: 8px;
|
|
padding: 4px 10px;
|
|
font-size: 26px;
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.gpu-info {
|
|
background-color: aqua;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-color: #ccc;
|
|
border-radius: 8px;
|
|
margin-top: 5px;
|
|
padding: 4px 8px;
|
|
margin-bottom: 5px;
|
|
background-color: #f9f9f9;
|
|
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.process-item {
|
|
color: rgb(26, 92, 247);
|
|
font-weight: bold;
|
|
}
|
|
|
|
/*占用状态*/
|
|
.state-free {
|
|
color: green;
|
|
}
|
|
.state-occupy {
|
|
color: red;
|
|
}
|
|
.state-light-occupy {
|
|
color: orange;
|
|
}
|
|
.state-super-occupy {
|
|
color: rgb(255, 0, 0);
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
background-color: rgb(255, 255, 0);
|
|
border-radius: 8px;
|
|
padding: 1px 6px;
|
|
}
|