summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJayaram R Pai2014-07-06 22:28:07 +0530
committerJayaram R Pai2014-07-06 22:28:07 +0530
commitaed831c2a96a692e2161b9a1242f8635cce4b916 (patch)
tree2c9304c6d9052eb65e924ccb04925ec9ab21b22d
parentebcda364123f1538f0e99896a9e80e60123a01df (diff)
downloadcustom-aed831c2a96a692e2161b9a1242f8635cce4b916.tar.gz
custom-aed831c2a96a692e2161b9a1242f8635cce4b916.tar.bz2
custom-aed831c2a96a692e2161b9a1242f8635cce4b916.zip
added branding logo
-rw-r--r--.custom.css.swpbin0 -> 12288 bytes
-rw-r--r--.custom.js.swpbin0 -> 16384 bytes
-rw-r--r--custom.css5
-rw-r--r--custom.js3
4 files changed, 8 insertions, 0 deletions
diff --git a/.custom.css.swp b/.custom.css.swp
new file mode 100644
index 0000000..49465c6
--- /dev/null
+++ b/.custom.css.swp
Binary files differ
diff --git a/.custom.js.swp b/.custom.js.swp
new file mode 100644
index 0000000..6d41b7f
--- /dev/null
+++ b/.custom.js.swp
Binary files 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 = $("<a href='http://fossee.in' class='pull-right' target='_blank'><img src='http://fossee.in/sites/all/themes/fossee/logo.png' width='100px'></a>");
+$("#ipython_notebook").after($branding);