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.
67 lines
1.2 KiB
67 lines
1.2 KiB
#header-container {
|
|
/* background-color: beige; */
|
|
font-size: 32px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.header-container {
|
|
/* display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
gap: 10px; */
|
|
}
|
|
|
|
.card {
|
|
padding: 5px 10px;
|
|
margin: 5px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
|
|
width: 300px;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.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;
|
|
}
|