From 2bdb4944ede54c1f674cd10b333fe033bdc4f384 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Thu, 8 Sep 2016 11:38:09 +0100 Subject: [PATCH] Better comments for media queries --- assets/style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/assets/style.css b/assets/style.css index 490db92..76e3b7d 100644 --- a/assets/style.css +++ b/assets/style.css @@ -223,17 +223,17 @@ footer { background: #fff; } -/* Responsive */ - -/* Hide country column on smaller screens */ +/* Small desktop */ @media (min-width: 800px) and (max-width: 1000px) { + + /* Hide country column */ th:nth-of-type(5), td:nth-of-type(5) { display: none; } } -/* Completely overwrite table layout for mobile */ +/* Mobile */ @media (max-width: 800px) { /* Get rid of browser table layout */