From 28d7cbaf96de82abc857f980e7522b9a3b6239b4 Mon Sep 17 00:00:00 2001 From: ChronosX88 Date: Sun, 9 Jan 2022 18:35:07 +0300 Subject: [PATCH] Move media query to the end of stylesheet --- style.css | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/style.css b/style.css index 08296a4..30ad243 100644 --- a/style.css +++ b/style.css @@ -26,27 +26,6 @@ body { font-family: PRegular; } -@media only screen and (max-width: 768px) { - .content { - width: 100vw; - - } - - .address { - font-size: 160%; - - } - - .address-desc { - font-size: 140%; - } - - .links { - margin-top: 10px; - font-size: 140%; - } -} - a { color: beige; } @@ -93,3 +72,24 @@ a:focus-visible { .links > a { margin: 10px; } + +@media only screen and (max-width: 768px) { + .content { + width: 60vw; + + } + + .address { + font-size: 160%; + + } + + .address-desc { + font-size: 140%; + } + + .links { + margin-top: 10px; + font-size: 140%; + } +}