From 1d701a3d3f762be3ba3d766a6b725f4b64723bd4 Mon Sep 17 00:00:00 2001 From: Blue Date: Mon, 29 Jul 2019 10:23:07 +0000 Subject: [PATCH 1/3] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20'style/main.css'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A lil fix for bottom scroll bar caused by footer --- style/main.css | 1 + 1 file changed, 1 insertion(+) diff --git a/style/main.css b/style/main.css index 1cebb78..c6e630e 100644 --- a/style/main.css +++ b/style/main.css @@ -184,6 +184,7 @@ nav > a > div { color: #777; text-align: left; + box-sizing: border-box; } From 1b76fa3fe1f65c1d7d9a96b39f430581f4d481bb Mon Sep 17 00:00:00 2001 From: Blue Date: Mon, 29 Jul 2019 10:27:09 +0000 Subject: [PATCH 2/3] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20'style/main.css'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Button unifying --- style/main.css | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/style/main.css b/style/main.css index c6e630e..ff77983 100644 --- a/style/main.css +++ b/style/main.css @@ -10,7 +10,7 @@ html, body { .button { width: 180px; - flex: auto; + border-radius: 5px; display: block; padding: 20px; background-color: #cde6ea; @@ -24,10 +24,6 @@ html, body { transition: background-color 0.2s ease; } -.button:hover { - background-color: rgba(0, 0, 0, 0.2); -} - nav { display: flex; overflow: hidden; @@ -53,7 +49,8 @@ nav > a.current { background-color: #5db9ef; } -nav > a:hover { +nav > a:hover, +.button:hover { background-color: rgba(0, 0, 0, 0.2); } From 82bf01b0af14ada2d82c34c4cadf88ecb49832ac Mon Sep 17 00:00:00 2001 From: Blue Date: Mon, 29 Jul 2019 10:27:51 +0000 Subject: [PATCH 3/3] =?UTF-8?q?=D0=98=D0=B7=D0=BC=D0=B5=D0=BD=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20'style/blue.css'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit button unifying --- style/blue.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/style/blue.css b/style/blue.css index 8a6f5fc..e425310 100644 --- a/style/blue.css +++ b/style/blue.css @@ -12,7 +12,8 @@ nav > a:last-child { margin: 10px; /*to collapse margins*/ } -nav > a:hover { +nav > a:hover, +.button:hover { background-color: #bfeaff; }