A simple, universal public Statuspage.
https://status.sp-codes.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
334 B
31 lines
334 B
2 years ago
|
.box {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
header {
|
||
|
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
flex: 1 0 auto;
|
||
|
padding-bottom: 1rem;
|
||
|
}
|
||
|
|
||
|
footer {
|
||
|
padding: 30px 0;
|
||
|
border-top: 1px solid #e8e8e8;
|
||
|
flex-shrink: 0;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #cccccc;
|
||
|
text-decoration: none;
|
||
|
|
||
|
&:hover {
|
||
|
color: #ffffff;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|