mirror of
https://github.com/zhigang1992/devhub.git
synced 2026-06-11 07:44:04 +08:00
25 lines
311 B
CSS
25 lines
311 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body,
|
|
html {
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
align-content: center;
|
|
align-items: center;
|
|
background-color: #313142;
|
|
text-align: center;
|
|
color: #fff;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
#error-container {
|
|
margin: auto;
|
|
} |