Simple global resizing of the Jupyter font and internal & external background colors (this change will affect all laptops).
On Windows, find the configuration directory by running the command: jupyter --config-dir
On Linux, this is ~/.jupyter
Create a custom subfolder in this directory. Create a custom.css file and paste:
.container { width: 99% !important; background: #DDC !important; } div.input_area { background: #F4F4E2 !important; font-size: 16px !important; } .CodeMirror { font-size: 16px !important; } div.cell.selected { border-left-width: 1px !important; }
Finally - restart Jupyter. Result:

source share