136 lines
2.3 KiB
CSS
136 lines
2.3 KiB
CSS
/* Changes for notebook in Robot Ignite */
|
|
/* Font Awesome */
|
|
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css');
|
|
|
|
/* START SCROLLBAR MOD
|
|
Make the scrollbar appear on the left side
|
|
so that it's more visible and not covered
|
|
by the jupyter buttons
|
|
*/
|
|
|
|
.highlight .err {
|
|
color: #FF0000 !important;
|
|
border: none !important;
|
|
}
|
|
|
|
div.input_area {
|
|
border: 1px solid #cfcfcf !important;
|
|
line-height: 21px !important;
|
|
}
|
|
|
|
div.input_area > div.highlight {
|
|
margin: 0.6em !important;
|
|
overflow: auto !important;
|
|
}
|
|
|
|
div.input_area > div.highlight > pre {
|
|
min-width: 100% !important;
|
|
white-space: pre !important;
|
|
word-break: normal !important;
|
|
}
|
|
|
|
#site {
|
|
direction: rtl !important;
|
|
}
|
|
|
|
#ipython-main-app {
|
|
direction: ltr !important;
|
|
}
|
|
|
|
/* END SCROLLBAR MOD */
|
|
|
|
#run_int{
|
|
top: 50px;
|
|
right: 0px;
|
|
position: fixed;
|
|
}
|
|
#run_int > .btn{
|
|
display: block;
|
|
float: none;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
#run_int > button{
|
|
width: 20px;
|
|
background-color: #21272A;
|
|
color: white;
|
|
border: 1px solid #BABABA;
|
|
cursor: pointer;
|
|
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
|
|
padding: 0px 3px 0px 3px;
|
|
margin: 0;
|
|
border-radius: 0.5em;
|
|
}
|
|
#run_int > button:hover{
|
|
background-color: #949ba2;
|
|
}
|
|
|
|
.toolbar-btn-label {
|
|
display: none;
|
|
}
|
|
|
|
.rendered_html h1{
|
|
color: #8F9D6A !important;
|
|
}
|
|
.rendered_html h1,
|
|
.rendered_html h2,
|
|
.rendered_html h3,
|
|
.rendered_html th,
|
|
.rendered_html p
|
|
{
|
|
font-family: 'Oxygen', sans-serif !important;
|
|
font-weight: normal;
|
|
}
|
|
#notebook-container{
|
|
background-color: #ECEFF4;
|
|
}
|
|
.notebook_app, body > #header{
|
|
background-color: transparent;
|
|
}
|
|
.ign_color{
|
|
color: #8F9D6A;
|
|
}
|
|
#nbp-app-btn{
|
|
display: none;
|
|
}
|
|
#nbp-present-btn{
|
|
display: none;
|
|
}
|
|
|
|
/* Extra CSS */
|
|
div.text_cell_render{
|
|
color: white;
|
|
}
|
|
a:hover{
|
|
color: #EE9222;
|
|
}
|
|
.ign_red{
|
|
color: black;
|
|
font-weight: bold;
|
|
}
|
|
.ign_green{
|
|
color: #8F9D6A;
|
|
font-weight: bold;
|
|
}
|
|
.ign_blue{
|
|
color: #CDA869;
|
|
font-weight: bold;
|
|
}
|
|
.transparent{
|
|
background-color: #464952;
|
|
}
|
|
div.input_prompt{
|
|
color: black;
|
|
}
|
|
.float_l{
|
|
float: left;
|
|
}
|
|
.white_bg{
|
|
background-color: white;
|
|
}
|
|
|
|
/* Remove left/blank space on notebooks for big screens */
|
|
div.text_cell > div.prompt {
|
|
display: none !important;
|
|
}
|