83 lines
1.4 KiB
CSS
83 lines
1.4 KiB
CSS
|
.servers {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
|
||
|
.server-card {
|
||
|
width: 400px;
|
||
|
min-height: 228px;
|
||
|
min-width: 250px;
|
||
|
max-width: 400px;
|
||
|
margin: 15px;
|
||
|
background-image: url("/images/server-backdrop.png");
|
||
|
background-size: cover;
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
|
||
|
.server-card-header {
|
||
|
padding: 0px;
|
||
|
display: inline-flex;
|
||
|
max-height: 32px;
|
||
|
height: 100%;
|
||
|
font-weight: bold;
|
||
|
text-transform: capitalize;
|
||
|
background-image: linear-gradient(
|
||
|
to right,
|
||
|
rgba(255, 255, 255, 1),
|
||
|
rgba(255, 255, 255, 0.1)
|
||
|
);
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.server-card-title {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
overflow-x: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
|
||
|
.server-card-status-indicator {
|
||
|
margin-left: auto;
|
||
|
margin-right: auto;
|
||
|
}
|
||
|
|
||
|
.server-card-actions-wrapper {
|
||
|
margin-top: auto;
|
||
|
justify-content: end;
|
||
|
width: 100%;
|
||
|
background-color: rgba(255, 255, 255, 0.9);
|
||
|
}
|
||
|
|
||
|
.server-card-actions {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
flex-wrap: wrap;
|
||
|
padding: 0px;
|
||
|
}
|
||
|
|
||
|
.server-card-action {
|
||
|
position: relative;
|
||
|
height: 20%;
|
||
|
}
|
||
|
|
||
|
.server-card-element {
|
||
|
background-color: rgba(255, 255, 255, 0.5);
|
||
|
}
|
||
|
|
||
|
.server-card-metrics {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.server-card-metrics-info {
|
||
|
display: inline-flex;
|
||
|
width: 100%;
|
||
|
overflow-x: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
white-space: nowrap;
|
||
|
}
|