From 8100e01ecfc4a78defc28564be6b2f2b04ae2e58 Mon Sep 17 00:00:00 2001 From: tomjohnson1492 Date: Tue, 5 Apr 2016 08:32:22 -0700 Subject: [PATCH] fixing small error in sidebar include code --- _includes/callout.html | 1 + _includes/important.html | 1 + _includes/note.html | 1 + _includes/sidebar.html | 2 +- _includes/tip.html | 1 + _includes/warning.html | 1 + css/customstyles.css | 20 ++++++++++++++++---- 7 files changed, 22 insertions(+), 5 deletions(-) create mode 100644 _includes/callout.html create mode 100644 _includes/important.html create mode 100644 _includes/note.html create mode 100644 _includes/tip.html create mode 100644 _includes/warning.html diff --git a/_includes/callout.html b/_includes/callout.html new file mode 100644 index 0000000..d492b18 --- /dev/null +++ b/_includes/callout.html @@ -0,0 +1 @@ +
{{include.content}}
diff --git a/_includes/important.html b/_includes/important.html new file mode 100644 index 0000000..af8824b --- /dev/null +++ b/_includes/important.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_includes/note.html b/_includes/note.html new file mode 100644 index 0000000..2c1cfe9 --- /dev/null +++ b/_includes/note.html @@ -0,0 +1 @@ + diff --git a/_includes/sidebar.html b/_includes/sidebar.html index 2cf2ffc..62b07ca 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -13,7 +13,7 @@ {% if folderitem.external_url %}
  • {{folderitem.title}}
  • {% elsif page.url == folderitem.url %} -
  • {{folderitem.title}}
  • +
  • {{folderitem.title}}
  • {% else %}
  • {{folderitem.title}}
  • {% endif %} diff --git a/_includes/tip.html b/_includes/tip.html new file mode 100644 index 0000000..faf48af --- /dev/null +++ b/_includes/tip.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/_includes/warning.html b/_includes/warning.html new file mode 100644 index 0000000..e08268c --- /dev/null +++ b/_includes/warning.html @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/css/customstyles.css b/css/customstyles.css index e2eeff7..3f4366c 100644 --- a/css/customstyles.css +++ b/css/customstyles.css @@ -148,10 +148,10 @@ table > tfoot > tr > td { table > thead > tr > th { vertical-align: bottom; border-bottom: 2px solid #ddd; - text-transform: uppercase; - background-color: #444; + text-transform: none; + background-color: #777; color: white; - text-align: center; + text-align: left; } table > caption + thead > tr:first-child > th, table > colgroup + thead > tr:first-child > th, @@ -1014,4 +1014,16 @@ li.sidebarTitle { background-color: whitesmoke; font-weight: bold; color: black; - } \ No newline at end of file + } + +a code { + color: #248EC2; +} + +code + a > code { + margin-left: -7px; +} + +table th code { + color: white; +} \ No newline at end of file