You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
341 B
CSS

3 years ago
html, body {
min-height: 100%;
}
body {
display: flex;
flex-direction: column;
align-items: stretch;
padding: 0;
margin: 0;
background: navy;
margin: 10px;
gap: 10px;
}
pre {
padding: 8px;
border-radius: 5px;
margin: 0;
overflow-x: auto;
}
pre.cyan {
background: cyan;
}
pre.green {
background: lightgreen;
}