ibis/assets/ibis.css

28 lines
351 B
CSS
Raw Normal View History

2024-01-09 11:41:44 +00:00
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;
2024-01-09 11:41:44 +00:00
}