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.
45 lines
754 B
CSS
45 lines
754 B
CSS
4 years ago
|
/*-----------------------------------------------------------------------------
|
||
|
| Copyright (c) 2014-2018, PhosphorJS Contributors
|
||
|
|
|
||
|
| Distributed under the terms of the BSD 3-Clause License.
|
||
|
|
|
||
|
| The full license is in the file LICENSE, distributed with this software.
|
||
|
|----------------------------------------------------------------------------*/
|
||
|
@import '~@lumino/default-theme/style/index.css';
|
||
|
@import './content.css';
|
||
|
|
||
|
|
||
|
body {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
|
||
|
#menuBar {
|
||
|
flex: 0 0 auto;
|
||
|
}
|
||
|
|
||
|
|
||
|
#main {
|
||
|
flex: 1 1 auto;
|
||
|
}
|
||
|
|
||
|
|
||
|
#palette {
|
||
|
min-width: 300px;
|
||
|
border-right: 1px solid #DDDDDD;
|
||
|
}
|
||
|
|
||
|
|
||
|
#dock {
|
||
|
padding: 4px;
|
||
|
}
|