From 411e9162fa52bbd042243047cd95c8cc7c4e6052 Mon Sep 17 00:00:00 2001 From: Jeremy Dixon Date: Sun, 24 Jan 2021 16:09:01 -0600 Subject: [PATCH] add pointer on volume and begin responsivity --- styles.css | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index af1d405..83b534b 100644 --- a/styles.css +++ b/styles.css @@ -2,6 +2,7 @@ outline: 0px solid transparent; } #volume { + cursor: pointer; position: relative; top: 4px; margin-left: -1rem; @@ -65,6 +66,7 @@ } [contenteditable="true"]{ + cursor: text !important; display: inline-block; min-width:10px; height: 32.5px; @@ -113,5 +115,37 @@ display: none; } - +@media only screen and (max-width: 1235px){ + #toolbar { + height: 120px; + } + #toolbar h1 { + margin-bottom:1.5rem; + } + #toolbar p { + line-height: 0rem; + } +} +@media only screen and (max-width: 650px){ + #toolbar { + height: 140px; + } + #toolbar h1 { + margin-bottom:1.5rem; + } + #toolbar p { + line-height: 0rem; + } +} +@media only screen and (max-width: 350px){ + #toolbar { + height: 160px; + } + #toolbar h1 { + margin-bottom:1.5rem; + } + #toolbar p { + line-height: 0rem; + } +}