From 3b1715eaf18f088e1f71c1312375caad3df93546 2011-07-21 03:42:32 From: Brian Granger Date: 2011-07-21 03:42:32 Subject: [PATCH] Further font adjustments to the notebook. * Using Fernando's recommended monospaced font list. * Increased tool/tab menus to 10 pt. --- diff --git a/IPython/frontend/html/notebook/static/css/notebook.css b/IPython/frontend/html/notebook/static/css/notebook.css index aa67572..e75e331 100644 --- a/IPython/frontend/html/notebook/static/css/notebook.css +++ b/IPython/frontend/html/notebook/static/css/notebook.css @@ -104,7 +104,7 @@ span#ipython_notebook h1 { } div#tools { - font-size: 9pt; + font-size: 10pt; } span#kernel_status { @@ -168,7 +168,7 @@ div.prompt { width: 80px; padding: 0px; margin: 0px; - font-family: Menlo, "Courier New", Courier, mono; + font-family: Monaco, Consolas, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace; font-weight: normal; font-style: normal; } @@ -190,7 +190,7 @@ div.input_prompt { textarea.input_area { text-align: left; - font-family: Menlo, "Courier New", Courier, mono; + font-family: Monaco, Consolas, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace; font-size: inherit; border-style: none; display: table-cell; @@ -225,7 +225,7 @@ div.output_prompt { div.output_area { text-align: left; - font-family: Menlo, "Courier New", Courier, mono; + font-family: Monaco, Consolas, "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Courier New", monospace; display: table-cell; }