From d4740cb18ce6d844f0c03fa5df06feac42cdfa41 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Mon, 25 Sep 2017 23:09:32 +0200 Subject: Added an individual ‘setup’ page; hamburger menu now goes to it. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- website/resources/css/custom.css | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) (limited to 'website/resources') diff --git a/website/resources/css/custom.css b/website/resources/css/custom.css index 3c8e0399..795b155c 100644 --- a/website/resources/css/custom.css +++ b/website/resources/css/custom.css @@ -209,7 +209,7 @@ a { text-align: left; } -@media (max-width: 768px) { +@media (max-width: 767px) { .fork-me { display: none; } @@ -235,9 +235,31 @@ a { width: 100%; height: auto; } + + .smallOnly { + display: block !important; + } + + .wideOnly { + display: none !important; + } +} + +@media (min-width: 768px) { + .smallOnly { + display: none !important; + } + + .wideOnly { + display: block !important; + } } img { max-width: 100%; height: auto; } + +h3.listHeader { + text-align: left; +} -- cgit