From ad4a856f091df4d01b06f89a5827c2f97b8edc29 Mon Sep 17 00:00:00 2001 From: EauLand Date: Tue, 2 Apr 2013 21:16:48 +0300 Subject: [PATCH] Improve ergonomics - don't move focus link (remove padding and add border transparent [fff]) - separate title 'miniflux' on mobile version - The links in .page in a single line on mobile version --- miniflux/assets/css/app.css | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/miniflux/assets/css/app.css b/miniflux/assets/css/app.css index f9f3717..d22d775 100644 --- a/miniflux/assets/css/app.css +++ b/miniflux/assets/css/app.css @@ -24,13 +24,13 @@ body { a { color: #3366CC; + border: 1px solid #fff; } a:focus { outline: 0; color: red; text-decoration: none; - padding: 3px; border: 1px dotted #aaa; } @@ -498,6 +498,7 @@ section li { .logo { display: block; float: none; + border-bottom: 1px solid #ccc; } header { @@ -516,11 +517,19 @@ section li { display: block; line-height: 25px; } + + nav ul { + padding-top: 5px; + } .page { clear: both; padding-top: 20px; } + + .page li { + margin-left: 5px; + } .item { font-size: 0.8em; @@ -534,4 +543,4 @@ section li { font-size: 0.9em; padding: 0; } -} \ No newline at end of file +}