51 lines
547 B
CSS
51 lines
547 B
CSS
html,
|
|
body,
|
|
input {
|
|
color: white;
|
|
background: black;
|
|
margin: 0;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 1em;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #111;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #444;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #555;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#root-container {
|
|
height: 100%;
|
|
}
|
|
|
|
#root-container {
|
|
display: flex;
|
|
height: 100%;
|
|
}
|
|
|
|
#root {
|
|
width: 0%;
|
|
min-width: min(40em, 100%);
|
|
flex: auto;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.sidebars {
|
|
width: 100%;
|
|
background: #050505;
|
|
}
|
|
|
|
#homeroot {
|
|
padding: 1em;
|
|
}
|