diff --git a/index.html b/index.html index e203bc3..9f47632 100644 --- a/index.html +++ b/index.html @@ -266,9 +266,7 @@ } #notes-toggle { - position: fixed; - bottom: 20px; - right: 20px; + position: relative; width: 60px; height: 60px; background-color: #3498db; @@ -282,6 +280,7 @@ z-index: 1998; font-size: 28px; transition: all 0.3s ease; + margin-left: 10px; } #notes-toggle:hover { @@ -585,9 +584,7 @@ } #bluetooth-toggle { - position: fixed; - bottom: 20px; - right: 90px; + position: relative; width: 60px; height: 60px; background-color: #9b59b6; @@ -601,6 +598,7 @@ z-index: 1998; font-size: 28px; transition: all 0.3s ease; + margin-left: 10px; } #bluetooth-toggle:hover { @@ -855,9 +853,7 @@ } #biometrics-toggle { - position: fixed; - bottom: 20px; - right: 160px; + position: relative; width: 60px; height: 60px; background-color: #e74c3c; @@ -871,6 +867,7 @@ z-index: 1998; font-size: 28px; transition: all 0.3s ease; + margin-left: 10px; } #biometrics-toggle:hover { @@ -895,6 +892,27 @@ } /* Rest of existing styles follow */ + .biometric-sample-timestamp { + font-size: 11px; + color: #888; + margin-top: 5px; + text-align: right; + } + + /* Toggle Buttons Container */ + #toggle-buttons-container { + position: fixed; + bottom: 20px; + right: 20px; + display: flex; + flex-direction: row-reverse; + z-index: 1998; + } + + /* Game container */ + #game-container { + position: relative; + } @@ -923,9 +941,21 @@
-