69 lines
No EOL
967 B
CSS
69 lines
No EOL
967 B
CSS
body {
|
|
background: black;
|
|
color: white;
|
|
|
|
font-family: monospace;
|
|
font-size: 13pt;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
|
|
a {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1, h2 {
|
|
text-align: center;
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
header {
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
main {
|
|
width: 100vw;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
.service {
|
|
margin: 1rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.service-content {
|
|
flex-grow: 1;
|
|
|
|
border: 1px solid white;
|
|
padding: 2rem;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.service .label h3 {
|
|
margin: 1rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.service .label .description {
|
|
margin: 0;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.service-status {
|
|
border: 1px solid white;
|
|
border-top: 0;
|
|
text-transform: uppercase;
|
|
text-align: right;
|
|
padding: .2em;
|
|
} |