summaryrefslogtreecommitdiff
path: root/_site/site_libs/tocify-1.9.1/jquery.tocify.css
diff options
context:
space:
mode:
Diffstat (limited to '_site/site_libs/tocify-1.9.1/jquery.tocify.css')
-rw-r--r--_site/site_libs/tocify-1.9.1/jquery.tocify.css82
1 files changed, 82 insertions, 0 deletions
diff --git a/_site/site_libs/tocify-1.9.1/jquery.tocify.css b/_site/site_libs/tocify-1.9.1/jquery.tocify.css
new file mode 100644
index 0000000..2102138
--- /dev/null
+++ b/_site/site_libs/tocify-1.9.1/jquery.tocify.css
@@ -0,0 +1,82 @@
+/*
+ * jquery.tocify.css 1.9.1
+ * Author: @gregfranko
+ */
+
+/* The Table of Contents container element */
+.tocify {
+ width: 20%;
+ max-height: 90%;
+ overflow: auto;
+ margin-left: 2%;
+ position: fixed;
+ border: 1px solid #ccc;
+ border-radius: 6px;
+}
+
+/* The Table of Contents is composed of multiple nested unordered lists. These styles remove the default styling of an unordered list because it is ugly. */
+.tocify ul, .tocify li {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+ border: none;
+ line-height: 30px;
+}
+
+/* Top level header elements */
+.tocify-header {
+ text-indent: 10px;
+}
+
+/* Top level subheader elements. These are the first nested items underneath a header element. */
+.tocify-subheader {
+ text-indent: 20px;
+ display: none;
+}
+
+/* Makes the font smaller for all subheader elements. */
+.tocify-subheader li {
+ font-size: 12px;
+}
+
+/* Further indents second level subheader elements. */
+.tocify-subheader .tocify-subheader {
+ text-indent: 30px;
+}
+.tocify-subheader .tocify-subheader .tocify-subheader {
+ text-indent: 40px;
+}
+.tocify-subheader .tocify-subheader .tocify-subheader .tocify-subheader {
+ text-indent: 50px;
+}
+.tocify-subheader .tocify-subheader .tocify-subheader .tocify-subheader .tocify-subheader {
+ text-indent: 60px;
+}
+
+/* Twitter Bootstrap Override Style */
+.tocify .tocify-item > a, .tocify .nav-list .nav-header {
+ margin: 0px;
+}
+
+/* Twitter Bootstrap Override Styles */
+.tocify .tocify-item a, .tocify .list-group-item {
+ padding: 5px;
+}
+
+.tocify .nav-pills > li {
+ float: none;
+}
+
+/* We don't override the bootstrap colors because this gives us the
+ wrong selection colors when using bootstrap themes
+
+.tocify .list-group-item:hover, .tocify .list-group-item:focus {
+ background-color: #f5f5f5;
+}
+
+.tocify .list-group-item.active:hover, .tocify .list-group-item.active:focus {
+ background-color: #428bca;
+}
+*/
+
+ /* End Twitter Bootstrap Override Styles */