commit 99e4731e1941b72da3ef8cb8c6f538995f9c2af1
parent b9c2e4aa697d0ea70b61a9e226aeb8b95c633006
Author: William Lindholm <william_lindholm@outlook.com>
Date: Mon, 20 Dec 2021 13:22:00 +0100
Merge branch 'main' of https://github.com/LindholmLabs/boredbutton3
Diffstat:
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/style.css b/style.css
@@ -137,15 +137,19 @@ footer{
filter: blur(7px);
width: calc(100% + 6px);
height: calc(100% + 6px);
- opacity: 0;
animation: glowing 20s linear infinite;
transition: opacity .3s ease-in-out;
border-radius: 50%;
+ opacity: 0;
}
#button:focus {
outline: none;
-};
+}
+
+#button:focus:before {
+ opacity: 0.95;
+}
#button:active:after {
background: #3F617C;
@@ -169,6 +173,7 @@ footer{
left: 0;
top: 0;
border-radius: 50%;
+ opacity: 1;
}
@keyframes glowing {