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.
60 lines
952 B
CSS
60 lines
952 B
CSS
/*-----------------------------------------------------------------------------
|
|
| Copyright (c) Jupyter Development Team.
|
|
| Copyright (c) 2014-2017, PhosphorJS Contributors
|
|
|
|
|
| Distributed under the terms of the BSD 3-Clause License.
|
|
|
|
|
| The full license is in the file LICENSE, distributed with this software.
|
|
|----------------------------------------------------------------------------*/
|
|
|
|
|
|
.content {
|
|
min-width: 50px;
|
|
min-height: 50px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
/*padding: 8px;*/
|
|
border: 1px solid #C0C0C0;
|
|
border-top: none;
|
|
background: white;
|
|
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.CodeMirror {
|
|
height: 100%;
|
|
}
|
|
|
|
.content > div {
|
|
flex: 1 1 auto;
|
|
/*border: 1px solid #C0C0C0;*/
|
|
overflow: auto;
|
|
}
|
|
|
|
|
|
.content input {
|
|
margin: 8px;
|
|
}
|
|
|
|
|
|
.red > div {
|
|
background: #E74C3C;
|
|
}
|
|
|
|
|
|
.yellow > div {
|
|
background: #F1C40F;
|
|
}
|
|
|
|
|
|
.green > div {
|
|
background: #27AE60;
|
|
}
|
|
|
|
|
|
.blue > div {
|
|
background: #3498DB;
|
|
}
|
|
|
|
|
|
|