46 lines
655 B
CSS
46 lines
655 B
CSS
.uptime-lnk {
|
|
font-weight: bolder;
|
|
color: #2f2f2f;
|
|
font-size: 1.1rem;
|
|
text-decoration: none;
|
|
transition: .5s;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.uptime-lnk:hover {
|
|
color: #e08b0d;
|
|
}
|
|
|
|
.uptime-modal {
|
|
border-radius: 20px;
|
|
border-color: transparent;
|
|
background-color: #eee;
|
|
padding: 20px;
|
|
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
|
width: 500px;
|
|
max-width: 100vw;
|
|
}
|
|
|
|
.stat-perfect {
|
|
font-weight: bold;
|
|
color: #069D06
|
|
}
|
|
|
|
.stat-middle {
|
|
color: #877E1C
|
|
}
|
|
|
|
.stat-bad {
|
|
color: #921111
|
|
}
|
|
|
|
hr {
|
|
height: 1.1px;
|
|
} |