diff --git a/src/TagHelpers/PagingTagHelper.cs b/src/TagHelpers/PagingTagHelper.cs index a88fa0c..6f2025e 100644 --- a/src/TagHelpers/PagingTagHelper.cs +++ b/src/TagHelpers/PagingTagHelper.cs @@ -23,6 +23,8 @@ public override void Process(TagHelperContext context, TagHelperOutput output) output.Content.AppendHtml("< Prev"); } + output.Content.AppendHtml(" | "); + if (Model.Next != null) { output.Content.AppendHtml($"Next >"); diff --git a/src/wwwroot/css/site.scss b/src/wwwroot/css/site.scss index cbd2c78..c2f2ea4 100644 --- a/src/wwwroot/css/site.scss +++ b/src/wwwroot/css/site.scss @@ -1,8 +1,8 @@ -$header-bgcolor: #555; -$header-color: #f5f5f5; -$link-color: #1270c4; -$body-color: #555; -$body-bgcolor: #f5f5f5; +$header-bgcolor: #444; +$header-color: #fff; +$body-color: #444; +$body-bgcolor: #fff; +$link-color: #0e5494; $footer-height: 30px; html { @@ -40,12 +40,12 @@ header { h1 a { color: $header-color; + text-decoration: none; } } a { color: $link-color; - text-decoration: none; } #title { @@ -63,13 +63,6 @@ a { > nav { float: right; } - - - > nav > :nth-child(2):before { - content: " |"; - margin-right: 5px; - text-decoration: none; - } } .pic a { @@ -177,4 +170,4 @@ footer { .photo img { height: auto; } -} \ No newline at end of file +}