1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
/* default colors */
html[data-theme="light"] {
--pst-color-primary: rgb(11, 76, 99);
--pst-color-secondary: rgb(227, 46, 0);
--pst-color-inline-code: rgb(227, 46, 0);
}
/* customised code blocks */
pre {
border: 0px;
border-bottom: 1px solid #f41616;
}
div.nbinput.container div.input_area {
background: #fafafa!important;
border-bottom: 1px solid #f41616!important;
border-top: 0px!important;
border-left: 0px!important;
border-right: 0px!important;
border-radius: 0px!important;
box-shadow: 1px 1px 1px #d8d8d8;
}
/* hide warnings */
div.output_area.stderr {
display: none;
}
|