mirror of
https://github.com/alexgo-io/OPI.git
synced 2026-01-12 22:43:27 +08:00
29 lines
321 B
CSS
29 lines
321 B
CSS
html {
|
|
background-color: #131516;
|
|
color: white;
|
|
font-size: 16px;
|
|
height: 100%;
|
|
line-height: 1;
|
|
}
|
|
|
|
body {
|
|
display: grid;
|
|
grid-template: 1fr / 1fr;
|
|
height: 100%;
|
|
margin: 0;
|
|
place-items: center;
|
|
}
|
|
|
|
pre {
|
|
margin: 0;
|
|
}
|
|
|
|
body > * {
|
|
grid-column: 1 / 1;
|
|
grid-row: 1 / 1;
|
|
}
|
|
|
|
body > pre {
|
|
opacity: 0;
|
|
}
|