This repository has been archived on 2023-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
gameserver/website/_site/assets/css/serverstats.css

40 lines
538 B
CSS

.cpu {
stroke: hotpink;
stroke-width: 3px;
}
.mem {
stroke: darkgreen;
stroke-width: 3px;
}
.graph {
}
.graphframe {
stroke: black;
fill: none;
}
.offline {
color: red;
font-size: 300%;
font-weight: bold;
}
.offline-blur {
position: absolute;
color: red;
font-size: 300%;
font-weight: bold;
animation-name: glow;
animation-duration: 4s;
animation-iteration-count: infinite;
}
@keyframes glow {
from {
filter: blur(.05em);
}
50% {
filter: blur(.1em);
}
to {
filter: blur(.05em);
}
}