From 75fe1f6c18e84f1c13d2ae0f8f2f0a9e270782ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n?= Date: Sat, 4 Apr 2020 14:53:00 -0300 Subject: [PATCH] Make this look better Removed the background of the donation box on mobile devices (width <760px) Changed the "small" class font size (making it a bit bigger) --- style.css | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index d336505..ac37852 100644 --- a/style.css +++ b/style.css @@ -44,7 +44,7 @@ a { } .small { - font-size: 2vh; + font-size: 2.3vh; } .medium { @@ -133,7 +133,6 @@ a { #moduleInfo { - background-color: #254558; border-radius: 6px; left: 50%; padding: 1% 2.5%; @@ -217,3 +216,9 @@ a { left: 0px; } } + +@media (min-width: 760px) { + #moduleInfo { + background-color: #254558; + } +}