Browse Source

Fixed theme setting

pull/60/head
Frans Bouma 9 years ago
parent
commit
f890d5043d
2 changed files with 14 additions and 13 deletions
  1. +1
    -1
      MarkdownSource/docnet.json
  2. +13
    -12
      css/theme_colors.css

+ 1
- 1
MarkdownSource/docnet.json View File

@@ -3,7 +3,7 @@
"Source" : ".", "Source" : ".",
"Destination" : "..\\", "Destination" : "..\\",
"IncludeSource": "Includes", "IncludeSource": "Includes",
"Theme" : "Light",
"Theme" : "Default",
"Footer" : "Made with DocNet. Get your copy at: <a href='https://github.com/FransBouma/DocNet' target='_blank'>https://github.com/FransBouma/DocNet</a>.", "Footer" : "Made with DocNet. Get your copy at: <a href='https://github.com/FransBouma/DocNet' target='_blank'>https://github.com/FransBouma/DocNet</a>.",
"Pages" : "Pages" :
{ {


+ 13
- 12
css/theme_colors.css View File

@@ -16,7 +16,7 @@ a:visited {
} }


body { body {
color: #222;
color: #404040;
} }


code, pre.nocode { code, pre.nocode {
@@ -58,7 +58,7 @@ mark {
} }


.toc-footer hr { .toc-footer hr {
border-color: #ccc;
border-color: #3e3a3a;
} }
/* #endregion */ /* #endregion */


@@ -182,43 +182,44 @@ mark {
} }


.menu-vertical ul.currentrelative, .menu-vertical ul.currentrelativeroot { .menu-vertical ul.currentrelative, .menu-vertical ul.currentrelativeroot {
background-color: #fcfcfc;
background-color: #e3e3e3;
} }


.menu-vertical li.current { .menu-vertical li.current {
background-color: #fcfcfc;
background-color: #fff;
} }


.menu-vertical ul.current { .menu-vertical ul.current {
background-color: #fcfcfc;
background-color: #3e3a3a;
} }


.menu-vertical li.current a { .menu-vertical li.current a {
color: #6b6b6b;
color: #777;
} }


.menu-vertical li.current.tocentry > a, .menu-vertical li.current > a { .menu-vertical li.current.tocentry > a, .menu-vertical li.current > a {
color: #6b6b6b;
color: #444;
} }


.menu-vertical li.current.tocentry ul li > a { .menu-vertical li.current.tocentry ul li > a {
color: #6b6b6b;
color: #777;
} }


.menu-vertical a { .menu-vertical a {
color: #6b6b6b;
color: #ccc;
} }


.menu-vertical a:hover, .menu-vertical li.on a:hover { .menu-vertical a:hover, .menu-vertical li.on a:hover {
color: #999;
color: #ccc;
} }



.menu-vertical span, .menu-vertical span > a { .menu-vertical span, .menu-vertical span > a {
color: #6b6b6b;
color: #999;
} }


.nav-side { .nav-side {
background: #eee;
background: #343131;
} }


.nav-top { .nav-top {


Loading…
Cancel
Save