mirror of
https://github.com/Nutomic/ibis.git
synced 2024-11-22 14:31:08 +00:00
28 lines
No EOL
351 B
CSS
28 lines
No EOL
351 B
CSS
html {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
body {
|
|
flex-direction: row;
|
|
display: flex;
|
|
min-height: 100%;
|
|
min-width: 100%;
|
|
padding: 0;
|
|
}
|
|
|
|
nav {
|
|
background-color: #f6f6f6;
|
|
padding: 10px;
|
|
list-style: none;
|
|
}
|
|
|
|
main {
|
|
background-color: #ffffff;
|
|
flex-grow: 1;
|
|
padding: 20px;
|
|
}
|
|
|
|
pre {
|
|
white-space: pre-wrap;
|
|
} |