From ecce616bf05635a620afbe44bf2540586d0dd172 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferit=20Yi=C4=9Fit=20BALABAN?= Date: Thu, 28 Jul 2022 21:43:13 +0300 Subject: [PATCH] Experimental positioning for .welcome heading --- resources/css/views/index.scss | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/resources/css/views/index.scss b/resources/css/views/index.scss index ac44d64..2ac35b9 100644 --- a/resources/css/views/index.scss +++ b/resources/css/views/index.scss @@ -17,16 +17,27 @@ $social-button_inner_margin: 10px; color: white; font: 500 50px Montserrat, sans-serif; z-index: 5; - bottom: 200px; + top: 700px; left: 200px; text-shadow: 2px 2px 15px black; - @include mixins.header_overflow2 { - bottom: 300px; + @media screen and (max-height: 1000px) { + top: 550px; + } + + @media screen and (max-height: 850px) { + top:450px; + } + + @media screen and (max-width: 850px) { left: 50px; } - @include mixins.mx_mobile { + @media screen and (max-width: 600px) { + top: 650px; + } + + @media screen and (max-width: 400px) { font-size: 32px; } }