elstat/priv/frontend/src/components/Service.css

45 lines
551 B
CSS

.service {
margin: 2rem 0;
}
.service header {
display: flex;
align-items: center;
}
.service header h2 {
margin: 0;
}
.service .information {
margin-left: 0.5em;
color: hsl(0, 0%, 45%);
}
@media (max-width: 500px) {
.service .information {
font-size: 1rem;
}
}
.service .emoji {
font-size: 2em;
margin-right: 0.5em;
}
.service .description {
margin-top: 1em;
}
.service.service-alive .emoji {
color: #2ecc40;
}
.service.service-slow .emoji {
color: #ff851b;
}
.service.service-dead .emoji {
color: #ff4136;
}