From 8469fdf22884fa08f9d2b3c74018ec7026243b1a Mon Sep 17 00:00:00 2001
From: ReznoRMichael
Date: Tue, 16 Feb 2021 23:54:50 +0100
Subject: [PATCH] scroll up button arrow and hover
---
build/index.html | 7 +++----
build/main.css | 21 +++++++++++++++++++++
src/css/style.css | 21 +++++++++++++++++++++
src/index.html | 3 ++-
4 files changed, 47 insertions(+), 5 deletions(-)
diff --git a/build/index.html b/build/index.html
index db3e5da..c405a70 100644
--- a/build/index.html
+++ b/build/index.html
@@ -145,7 +145,8 @@
- ^
+
+
@@ -230,15 +231,13 @@
v1.0.4. Work-In-Progress. Feedback: Steam Discussions Steam Guide .
Programmed, written and created by 🉑 rezno[R] © 2020–2021
Support Tool (PayPal)
-
-
Valuable Tool supporters: Klaudia, David, Rohit, Dominic.
- Donate any amount and you will be immortalized here!
+ Donate any amount and you will get immortalized here!
diff --git a/build/main.css b/build/main.css
index 5f322ee..9f89bf8 100644
--- a/build/main.css
+++ b/build/main.css
@@ -516,6 +516,9 @@ a.button:visited {
width: 50px;
height: 50px;
text-decoration: none;
+ background-color: #1e4d6c;
+ border: 0;
+ outline: 0;
position: fixed;
right: 1px;
bottom: 0;
@@ -524,6 +527,24 @@ a.button:visited {
transition: all 0.3s ease;
}
+.scroll-up-button:hover {
+ background-color: #2e5d7c;
+ cursor: pointer;
+}
+
+.scroll-up-button-arrow {
+ position: relative;
+ left: 12px;
+ top: 3px;
+ width: 12px;
+ height: 12px;
+ border: solid #aac7d4;
+ border-width: 2px 0px 0px 2px;
+ -webkit-transform: rotate(45deg);
+ -ms-transform: rotate(45deg);
+ transform: rotate(45deg);
+}
+
.hidden {
display: none;
}
diff --git a/src/css/style.css b/src/css/style.css
index 2a75415..1778a93 100644
--- a/src/css/style.css
+++ b/src/css/style.css
@@ -409,6 +409,9 @@ a.button:visited {
width: 50px;
height: 50px;
text-decoration: none;
+ background-color: #1e4d6c;
+ border: 0;
+ outline: 0;
position: fixed;
right: 1px;
bottom: 0;
@@ -417,6 +420,24 @@ a.button:visited {
transition: all 0.3s ease;
}
+.scroll-up-button:hover {
+ background-color: #2e5d7c;
+ cursor: pointer;
+}
+
+.scroll-up-button-arrow {
+ position: relative;
+ left: 12px;
+ top: 3px;
+ width: 12px;
+ height: 12px;
+ border: solid #aac7d4;
+ border-width: 2px 0px 0px 2px;
+ -webkit-transform: rotate(45deg);
+ -ms-transform: rotate(45deg);
+ transform: rotate(45deg);
+}
+
.hidden {
display: none;
}
diff --git a/src/index.html b/src/index.html
index 42acde3..a0ae426 100644
--- a/src/index.html
+++ b/src/index.html
@@ -30,7 +30,8 @@
- ^
+
+