diff --git a/404.html b/404.html index bdeecb4..6669dae 100644 --- a/404.html +++ b/404.html @@ -163,7 +163,6 @@ Ember @@ -177,50 +176,44 @@ + position: relative; + display: inline-block; + cursor: pointer; + } + + #qr-code { + position: absolute; + bottom: 100%; + left: 50%; + transform: translateX(-50%); + padding: 10px; + background-color: #fff; + border: 1px solid #ccc; + border-radius: 10px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + width: 200px; + height: 200px; + display: flex; + justify-content: center; + align-items: center; + opacity: 0; + visibility: hidden; + transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out; + } + + #qr-code img { + max-width: 100%; + max-height: 100%; + border-radius: 10px; + } + + #ember-container:hover #qr-code, + #ember-container:focus #qr-code { + opacity: 1; + visibility: visible; + } + +