From 8969816e294a6f9cb261341bd911b38800ac9ff9 Mon Sep 17 00:00:00 2001 From: David Buchanan Date: Thu, 17 Jun 2021 16:46:58 +0100 Subject: [PATCH] Mobile layout CSS rules --- css/common.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/css/common.css b/css/common.css index a4d7689..6396fe4 100644 --- a/css/common.css +++ b/css/common.css @@ -154,3 +154,12 @@ background-repeat: no-repeat; word-wrap: break-word; } +/* mobile layout */ +@media only screen and (max-width: 600px) { + .slider-bar { + display: none; + } + header > h1 { + font-size: 12vw; + } +}