From aed831c2a96a692e2161b9a1242f8635cce4b916 Mon Sep 17 00:00:00 2001 From: Jayaram R Pai Date: Sun, 6 Jul 2014 22:28:07 +0530 Subject: added branding logo --- .custom.css.swp | Bin 0 -> 12288 bytes .custom.js.swp | Bin 0 -> 16384 bytes custom.css | 5 +++++ custom.js | 3 +++ 4 files changed, 8 insertions(+) create mode 100644 .custom.css.swp create mode 100644 .custom.js.swp diff --git a/.custom.css.swp b/.custom.css.swp new file mode 100644 index 0000000..49465c6 Binary files /dev/null and b/.custom.css.swp differ diff --git a/.custom.js.swp b/.custom.js.swp new file mode 100644 index 0000000..6d41b7f Binary files /dev/null and b/.custom.js.swp differ diff --git a/custom.css b/custom.css index ba3b6cf..d3ab252 100644 --- a/custom.css +++ b/custom.css @@ -39,3 +39,8 @@ This will always be an empty file in IPython #running, #clusters { display: none; } +/* padding for the branding div */ +.navbar .container { + padding-top: 10px; + padding-bottom: 10px; +} diff --git a/custom.js b/custom.js index 417a52b..c3be96f 100644 --- a/custom.js +++ b/custom.js @@ -147,3 +147,6 @@ $("#tabs a").each(function(index, element) { $(this).hide(); } }); + +var $branding = $(""); +$("#ipython_notebook").after($branding); -- cgit