diff --git a/index.html b/index.html index 3b1fd15..276c19c 100644 --- a/index.html +++ b/index.html @@ -898,6 +898,49 @@ min-width: 70px; } } + + /* Fullscreen toggle button */ + .fullscreen-toggle { + position: fixed; + bottom: 20px; + right: 20px; + width: 48px; + height: 48px; + border-radius: 50%; + background-color: rgba(52, 152, 219, 0.9); + border: none; + color: white; + cursor: pointer; + display: flex; + align-items: center; + justify-content: center; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); + z-index: 1000; + transition: background-color 0.2s, transform 0.2s; + } + + .fullscreen-toggle:hover { + background-color: rgba(52, 152, 219, 1); + transform: scale(1.1); + } + + .fullscreen-toggle:active { + transform: scale(0.95); + } + + .fullscreen-toggle svg { + width: 24px; + height: 24px; + } + + @media screen and (max-width: 480px) { + .fullscreen-toggle { + bottom: 15px; + right: 15px; + width: 40px; + height: 40px; + } + } @@ -1014,6 +1057,12 @@
+ +