From 3f45aa17b07329e78d8cfb621f11a92bc734d597 Mon Sep 17 00:00:00 2001 From: JoanaChicau Date: Sun, 21 Mar 2021 15:58:02 +0100 Subject: [PATCH] testing style mobile user cond event added styles @media only screen and (max-width: 768px) for /* SILVIO*/ classes --- index.html | 6 ++---- narrowstyle.css | 47 ++++++++++++++++++++++++++++++++++++++++++----- 2 files changed, 44 insertions(+), 9 deletions(-) diff --git a/index.html b/index.html index 214f5b5..cdffcb5 100644 --- a/index.html +++ b/index.html @@ -58,10 +58,8 @@ -
- + diff --git a/narrowstyle.css b/narrowstyle.css index 8cb3606..7d44658 100644 --- a/narrowstyle.css +++ b/narrowstyle.css @@ -354,13 +354,14 @@ button.minimize:hover { } .chat { - margin-left: 1%; - width: 44%; + margin: 0% 2% 0% 1%; + width: 42%; } .chat iframe { width: 100%; height: 80vh; + padding-top: 3rem; } .audio { @@ -370,20 +371,56 @@ button.minimize:hover { bottom: 60px; } +.lil-face{ + position: absolute; + bottom: 50px; + right: 38px; +} + /* :::::::::::::::::::::::::::::::::::::::::::::: Responsiveness :::::::::::::::::::::::::::::::::::::::::::::: */ @media only screen and (max-width: 768px) { - .live-flex { +/* .live-flex { flex-direction: column; - } + }*/ + .halfscreen , .thirdscreen { width: 100%; } -} + /* SILVIO MOBILE*/ + + .essay { + width: 85%; + } + + .essay iframe { + width: 100%; + height: 50vh; + } + .chat { + width: 85%; + } + .chat iframe { + height: 50vh; + } + .audio { + width: 80%; + position: relative; + margin: 6rem 0% 0% 6rem; + } + + .lil-face{ + position: relative; + margin: 0% 0% 2rem 1rem; + bottom: inherit; + right: inherit; + } + +}