diff options
Diffstat (limited to '')
-rw-r--r-- | source/css/theme.css | 10 | ||||
-rw-r--r-- | source/template.html | 4 |
2 files changed, 10 insertions, 4 deletions
diff --git a/source/css/theme.css b/source/css/theme.css index 3a77d7f3..01b666d4 100644 --- a/source/css/theme.css +++ b/source/css/theme.css @@ -67,14 +67,20 @@ only screen and ( min-resolution: 1.25dppx) { font-size: 17px; font-weight: bold; margin: 2px 0 1px 0; + text-decoration: none; +} + +.nav-title:before { + content: "dl? cmplnts?"; } .nav-author { font-size: 13px; + text-decoration: none; } -.nav-link { - text-decoration: none; +.nav-author:before { + content: "by Zhiming Wang"; } .content, .content-separator, .footer { diff --git a/source/template.html b/source/template.html index 527e8375..f7e11237 100644 --- a/source/template.html +++ b/source/template.html @@ -35,8 +35,8 @@ $endif$ <body> <nav class="nav"> <a class="nav-icon" href="/" title="Home"><!--blog icon--></a> - <div class="nav-title"><a href="/" class="nav-link">dl? cmplnts?</a></div> - <div class="nav-author">by <a href="https://github.com/zmwangx" class="nav-link" target="_blank">Zhiming Wang</a></div> + <a class="nav-title" href="/"><!--blog title--></a> + <a class="nav-author" href="https://github.com/zmwangx" target="_blank"><!--blog author--></a> </nav> <article class="content"> $if(title)$ |