From e6de4b3f211cbeaf347b5ce5f884eaae3287cf47 Mon Sep 17 00:00:00 2001 From: Coby Chapple Date: Mon, 8 Jul 2013 19:40:50 +0100 Subject: [PATCH 1/5] fix negative right margin on release label --- site/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/css/style.css b/site/css/style.css index 0b4d90ed..5e4e87fc 100644 --- a/site/css/style.css +++ b/site/css/style.css @@ -552,7 +552,7 @@ article h2:first-child { @media (max-width: 568px){ .post-category { - margin-right: -30px; + padding-left: 30px; } } From 3061720501b17edadd04315a4b73f7eb8b1b1113 Mon Sep 17 00:00:00 2001 From: Coby Chapple Date: Mon, 8 Jul 2013 19:41:15 +0100 Subject: [PATCH 2/5] extend menu word hiding to include portrait tablets --- site/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/css/style.css b/site/css/style.css index 5e4e87fc..2eacd5ea 100644 --- a/site/css/style.css +++ b/site/css/style.css @@ -126,7 +126,7 @@ nav li { text-align: right; } } -@media (max-width: 720px){ +@media (max-width: 830px){ .main-nav .show-on-mobiles { display: inline; } From a4eee86fdb951e41e6ea69231a1255e08090a794 Mon Sep 17 00:00:00 2001 From: Coby Chapple Date: Mon, 8 Jul 2013 19:41:26 +0100 Subject: [PATCH 3/5] =?UTF-8?q?don=E2=80=99t=20center=20blog=20post=20titl?= =?UTF-8?q?es=20on=20mobiles?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- site/_includes/news_item.html | 2 +- site/_layouts/news_item.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/site/_includes/news_item.html b/site/_includes/news_item.html index e09e162f..d32b4b0a 100644 --- a/site/_includes/news_item.html +++ b/site/_includes/news_item.html @@ -1,5 +1,5 @@
-

+

{{ post.title }} diff --git a/site/_layouts/news_item.html b/site/_layouts/news_item.html index b0645320..d3955020 100644 --- a/site/_layouts/news_item.html +++ b/site/_layouts/news_item.html @@ -3,7 +3,7 @@ layout: news ---
-

+

{{ page.title }}

From 57994ef4c92d74c00196d6ac23efb91161744ff5 Mon Sep 17 00:00:00 2001 From: Coby Chapple Date: Mon, 8 Jul 2013 19:48:47 +0100 Subject: [PATCH 4/5] ensure overview nav has horizontal padding on mobiles --- site/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/css/style.css b/site/css/style.css index 2eacd5ea..c8e0650d 100644 --- a/site/css/style.css +++ b/site/css/style.css @@ -104,7 +104,7 @@ nav li { text-transform: uppercase; font-size: 14px; font-weight: 800; - padding: 5px 0; + padding: 5px; border-radius: 5px; } From a6c0fa9b6d63eab28e678fa1992da90c996897b9 Mon Sep 17 00:00:00 2001 From: Coby Chapple Date: Mon, 8 Jul 2013 20:00:21 +0100 Subject: [PATCH 5/5] =?UTF-8?q?don=E2=80=99t=20indent=20lists=20so=20much?= =?UTF-8?q?=20on=20narrow=20screens?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- site/css/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/site/css/style.css b/site/css/style.css index c8e0650d..049ee115 100644 --- a/site/css/style.css +++ b/site/css/style.css @@ -371,6 +371,12 @@ article { font-size: 16px; } +@media (max-width: 480px){ + article ul { + padding-left: 20px; + } +} + @media (max-width: 568px){ article { margin: 0;