From 34dcd54c3f601306e9f0922e6e8530cc2932e262 Mon Sep 17 00:00:00 2001
From: Adam Caprez <acaprez2@unl.edu>
Date: Mon, 3 Dec 2018 22:25:04 +0000
Subject: [PATCH] Initial changes for NU theming.

---
 config.toml                                 |   4 +-
 content/_header.md                          |   7 ++
 layouts/partials/custom-content-footer.html |  14 +++
 layouts/partials/custom-head.html           |   1 +
 static/css/custom.css                       | 108 ++++++++++++++++++++
 static/images/UNMasterwhite.gif             | Bin 0 -> 2188 bytes
 6 files changed, 132 insertions(+), 2 deletions(-)
 create mode 100644 content/_header.md
 create mode 100644 layouts/partials/custom-content-footer.html
 create mode 100644 static/images/UNMasterwhite.gif

diff --git a/config.toml b/config.toml
index a54b8467..7b0ac0c1 100644
--- a/config.toml
+++ b/config.toml
@@ -20,8 +20,8 @@ enableMissingTranslationPlaceholders = false
 [params]
 editURL = "https://git.unl.edu/hcc/hcc-docs/edit/master/content/"
 showVisitedLinks = true # default is false
-themeStyle = "flex" # "original" or "flex" # default "flex"
-themeVariant = "" # choose theme variant "green", "gold" , "gray", "blue" (default)
+themeStyle = "original" # "original" or "flex" # default "flex"
+themeVariant = "blue" # choose theme variant "green", "gold" , "gray", "blue" (default)
 ordersectionsby = "weight" # ordersectionsby = "title"
 disableHomeIcon = false # default is false
 disableSearch = false # default is false
diff --git a/content/_header.md b/content/_header.md
new file mode 100644
index 00000000..c247c736
--- /dev/null
+++ b/content/_header.md
@@ -0,0 +1,7 @@
++++
+title = "Header"
++++
+{{< figure src="/images/UNMasterwhite.gif" link="https://nebraska.edu" target="_blank" >}}
+### [Holland Computing Center](https://hcc.unl.edu)
+
+#### [HCC-DOCS]({{< relref "/" >}})
diff --git a/layouts/partials/custom-content-footer.html b/layouts/partials/custom-content-footer.html
new file mode 100644
index 00000000..0aabf33d
--- /dev/null
+++ b/layouts/partials/custom-content-footer.html
@@ -0,0 +1,14 @@
+<footer class=" footline" >
+
+{{ $footer := print "_footer." .Lang }}
+{{ range where .Site.Pages "File.BaseFileName" $footer }}
+  {{ .Content }}
+{{else}}
+  {{ if .Site.GetPage "page" "_footer.md" }}
+    {{(.Site.GetPage "page" "_footer.md").Content}}
+  {{else}}
+    {{ T "create-footer-md" }}
+  {{end}}
+{{end}}
+
+</footer>
diff --git a/layouts/partials/custom-head.html b/layouts/partials/custom-head.html
index 7c12a5aa..850a6411 100644
--- a/layouts/partials/custom-head.html
+++ b/layouts/partials/custom-head.html
@@ -1 +1,2 @@
 <link rel="stylesheet" href="/css/custom.css">
+<link href="//cloud.typography.com/7717652/616662/css/fonts.css" type="text/css" rel="stylesheet">
diff --git a/static/css/custom.css b/static/css/custom.css
index c16d4511..ec010dd0 100644
--- a/static/css/custom.css
+++ b/static/css/custom.css
@@ -1,3 +1,111 @@
 .img-border a img  {
   border:1px solid #021a40 !important ;
 }
+
+body, h5, h6 {
+background:  #FEFDFA ;
+font-family: "Mercury SSm A","Mercury SSm B","Times New Roman",serif;
+font-size: 16px !important;
+}
+
+#sidebar {
+background-color: rgb(239, 238, 235);
+}
+
+#header-wrapper {
+background: #D00000;
+/* background-color: #137CBD; */
+}
+
+#header-wrapper a {
+color: #ffffff !important;
+}
+
+.searchbox {
+background: #FEFDFA;
+}
+
+.searchbox input {
+color:  rgb(91,91,90);
+}
+
+.searchbox label {
+color: #1B9AE8;
+}
+
+::placeholder {
+color: #137CBD !important ;
+}
+
+.searchbox span {
+color: #1B9AE8;
+}
+
+#sidebar ul.topics > li.parent, #sidebar ul.topics > li.active {
+background: #f4f3f0;
+color: #5b5b5a;
+}
+
+#sidebar ul.topics > li.parent a, #sidebar ul.topics > li.active a {
+color: #5b5b5a;
+}
+
+h1, h2, h3, h4 {
+font-family: "Tungsten A","Tungsten B",Impact,Haettenschweiler,"Arial Narrow Bold","Franklin Gothic Bold",sans-serif ;
+letter-spacing: 0px;
+}
+
+code {
+background: none;
+border: none;
+}
+
+#sidebar a {
+color: #5b5b5a;
+border-bottom-style: none;
+border-bottom-width: none;
+}
+
+#sidebar a:hover {
+color: #D00000;
+}
+
+#sidebar ul.topics > li.parent a:hover, #sidebar ul.topics > li.active a:hover {
+color: #D00000;
+}
+
+#sidebar ul li.active > div > a:hover {
+color: #D00000 !important;
+}
+
+#sidebar ul li .read-icon {
+margin-left: -14px;
+}
+
+.fa-circle-thin:before {
+content:  none;
+}
+
+#header h3, h4 {
+margin-top: 16px;
+color:  #ffffff;
+}
+
+#clear-history {
+display: none;
+}
+
+a {
+color: #d00000;
+border-bottom-style: dotted;
+border-bottom-width: 1px;
+}
+
+a:hover {
+color: #6a0000;
+}
+
+#header a:hover {
+border-bottom-style: dotted;
+border-bottom-width: 1px;
+}
diff --git a/static/images/UNMasterwhite.gif b/static/images/UNMasterwhite.gif
new file mode 100644
index 0000000000000000000000000000000000000000..31a4d5c1811423f1c575af4de0284ad7cb3cffbb
GIT binary patch
literal 2188
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

literal 0
HcmV?d00001

-- 
GitLab