From 2edfd144378ecdc9293dc93098d08fb0f6b38eb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=91cze=20Bence?= Date: Sun, 2 May 2021 14:51:01 +0200 Subject: [PATCH] make circle control items more general --- public/static/css/game.css | 42 ---------------------------- public/static/css/mapguesser.css | 47 ++++++++++++++++++++++++++++++++ views/game.php | 14 +++++----- 3 files changed, 54 insertions(+), 49 deletions(-) diff --git a/public/static/css/game.css b/public/static/css/game.css index bc87bbb..a23d889 100644 --- a/public/static/css/game.css +++ b/public/static/css/game.css @@ -150,39 +150,9 @@ } #navigation { - position: absolute; z-index: 2; } -#navigation .navigationItem { - margin-top: 10px; - opacity: 70%; - cursor: pointer; -} - -#navigation .navigationItem:hover { - opacity: 100%; -} - -#navigation .navigationItem div { - position: absolute; -} - -#navigation .circleBackground { - width: 100%; - height: 100%; - opacity: 50%; -} - -#navigation .navigationIcon { - width: 75%; - height: 75%; - margin: auto; - margin-top: 50%; - transform: translateY(-50%); - -ms-transform: translateY(-50%); -} - @media screen and (max-width: 599px) { #mapName { display: none; @@ -209,10 +179,6 @@ #navigation { bottom: 25px; left: 10px; - width: 45px; - } - #navigation .navigationItem { - height: 45px; } } @@ -260,10 +226,6 @@ #navigation { bottom: 50px; left: 20px; - width: 60px; - } - #navigation .navigationItem { - height: 60px; } @media screen and (max-height: 424px) { #guess { @@ -282,10 +244,6 @@ #navigation { bottom: 30px; left: 10px; - width: 45px; - } - #navigation .navigationItem { - height: 45px; } } } diff --git a/public/static/css/mapguesser.css b/public/static/css/mapguesser.css index 69bd7fc..0f04f3f 100644 --- a/public/static/css/mapguesser.css +++ b/public/static/css/mapguesser.css @@ -443,6 +443,41 @@ div.box { box-sizing: border-box; } +.circleControl { + position: absolute; + bottom: 20px; + right: 10px; +} + +.circleControl .controlItem { + margin-top: 10px; + opacity: 70%; + cursor: pointer; +} + +.circleControl .controlItem:hover { + opacity: 100%; +} + +.circleControl .controlItem div { + position: absolute; +} + +.circleControl .controlBackground { + width: 100%; + height: 100%; + opacity: 50%; +} + +.circleControl .controlIcon { + width: 75%; + height: 75%; + margin: auto; + margin-top: 50%; + transform: translateY(-50%); + -ms-transform: translateY(-50%); +} + @media screen and (max-width: 599px) { header h1 span { display: none; @@ -469,6 +504,12 @@ div.box { div.box { width: initial; } + .circleControl { + width: 45px; + } + .circleControl .controlItem { + height: 45px; + } } @media screen and (min-width: 600px) { @@ -489,6 +530,12 @@ div.box { padding-left: 20px; padding-right: 20px; } + .circleControl { + width: 60px; + } + .circleControl .controlItem { + height: 60px; + } } @media screen and (max-height: 399px) { diff --git a/views/game.php b/views/game.php index ad3d107..218b937 100644 --- a/views/game.php +++ b/views/game.php @@ -59,21 +59,21 @@ -