From e9055f0a7832f5edf252c811f30d2103a47cceec Mon Sep 17 00:00:00 2001 From: gizak Date: Tue, 27 Jan 2015 11:59:51 -0500 Subject: Fix Mobile display and change link color scheme Fix Safari Mobile menu Add underline when hover on footnote links Set link color to red in post view --- static/css/custom.css | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/static/css/custom.css b/static/css/custom.css index e9f4eb9..ec371e9 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -8,8 +8,8 @@ html { position:relative; } -.body { - margin-bottom:2em; +body { + background-color: rgb(249,249,249); } .navbar { @@ -82,6 +82,11 @@ html { color: #888 !important } +.footnote a:hover{ + text-decoration:underline; + color:#369; +} + .footer { position:absolute; z-index:2; @@ -105,6 +110,16 @@ html { line-height:25px; } +.post a { + color:#c05b4d; + text-decoration: none; +} + +.post a:hover { + color:#a5473a; + text-decoration: underline; +} + .post h1 { font-size:23px; letter-spacing:normal; @@ -165,6 +180,8 @@ html { margin-bottom:5px; margin-right:0; transform: translateY(0); + -webkit-transform: translateY(0); + -ms-transform: translateY(0); } .navbar ul { -- cgit v1.2.3