diff --git a/index.html b/index.html index bdab366..039a305 100644 --- a/index.html +++ b/index.html @@ -205,6 +205,46 @@ #no-webxr a { color: #000; } + + #aria-output { + position: fixed; + left: 0; top: 0; + width: 50vw; + z-index: 99; + color: #fff; + background-color: rgba(0, 0, 0, 0.78) ; + } + + .a11y-point { + display: flex; + flex-wrap: nowrap; + flex-direction: row; + justify-content: center; + white-space: nowrap; + position: fixed; + width: 4px; height: 4px; + background-color: red; + border-radius: 50%; + z-index: 99; + } + + .xr-button { + position: absolute; + left: 50%; bottom: 20px; + transform: translateX(-50%); + padding: 16px 36px; + border: 1px solid transparent; + border-radius: 4px; + background: rgba(0,0,0,0.78); + color: #fff; + font: normal 16px sans-serif; + text-align: center; + z-index: 999; + } + + .xr-button:active { + border: 1px solid #fff; + }
+ +