Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nathancday/min_night.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNate <nathancday@gmail.com>2018-03-19 19:31:57 +0300
committerNate <nathancday@gmail.com>2018-03-19 19:31:57 +0300
commit52e64bc287747d52717300711dfc31f2fcf1bb98 (patch)
tree50622f6dc92065d234a4c25adfefbc77faafbddc
parent08f025572dabfdf762817aeb4ffb838926a1e544 (diff)
dark_bars work complete
-rw-r--r--layouts/partials/footer.html4
-rw-r--r--static/css/main.css46
2 files changed, 36 insertions, 14 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index d4a1ecf..0e0794b 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,6 +1,6 @@
- <footer>
+ <footer id = "bigfooter">
<div style = "padding:15px;">
- <p class="copyright text-muted">{{ .Site.Params.copyright | default "&copy; You. Powered by [Hugo](https://gohugo.io) and [min_night](https://github.com/nathancday/min_night)" | markdownify }}
+ <p>{{ "Powered by [Hugo](https://gohugo.io). Themed by [MinNight](https://github.com/nathancday/min_night)." | markdownify }}
</p>
<a rel="license" href="https://creativecommons.org/licenses/by/4.0/"
title="Creative Commons Attribution 4.0 International license">
diff --git a/static/css/main.css b/static/css/main.css
index 33f2c4e..594ddaa 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -48,21 +48,23 @@ main {
/*apply accent colour to links*/
a:link, a:visited {
- color: var(--accent);
+ color: #555555;
}
-a:link.-nightmode {
- color = "ebe4d1"
+
+#bigbody main a {
+ color: var(--accent) !important;
}
-a.icon:hover {
- text-decoration: none;
+#bigfooter a:link, a:visited {
+ color: #cccccc;
}
-a:hover {
- text-decoration: none;
- color: var(--accent) !important;
+#bigfooter a:hover {
+ text-decoration: underline;
+ color: #FFF;
}
+
/*paginator at bottom of list view*/
.pages {
@@ -105,16 +107,35 @@ a:hover {
/*coloured borders at top and bottom of the page*/
.navbar.navbar-default {
border-top: var(--border-width) solid var(--accent);
+ background-color: var(--accent);
font-size: 120%;
+ color: #FFF !important;
+}
+.navbar-default .navbar-nav li a {
+ color: #cccccc;
+}
+
+.navbar-default .navbar-nav li a:hover {
+ color: #FFF;
+}
+
+.navbar-default .navbar-nav.-nightmode li a:hover {
+ color: #cccccc;
}
/* custome footer */
footer {
- background-color: #f8f8f8;
+ background-color: var(--accent);
border-top: #e7e7e7 solid;
border-top-width: 1px;
- color:"white";
- border-bottom: var(--border-width) solid var(--accent);
+ color: #fff;
+ border-bottom: var(--border-width) solid #f8f8f8;
+}
+footer a {
+ color: #cccccc;
+}
+footer p {
+ color: #cccccc;
}
img {
@@ -153,7 +174,8 @@ img {
#night-mode-toggle {
display: inline-block !important;
padding-top:10px;
- font-size: 125%;
+ padding-left:10px;
+ font-size: 130%;
}
/* built on-top of Custom Style .ios
from: http://www.bootstraptoggle.com/ */